include: phy: add data field for private driver data

This is useful to carry custom information between the driver structure
associated with a specific HW and the driver code.

Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
Alex Marginean 2019-11-14 18:28:29 +02:00 committed by Joe Hershberger
parent 17285fc283
commit d718b697a1

View File

@ -115,6 +115,9 @@ struct phy_driver {
u16 val);
struct list_head list;
/* driver private data */
ulong data;
};
struct phy_device {