Lines Matching defs:phy_device
354 struct phy_device { struct
357 struct phy_driver *drv;
359 struct mii_bus *bus;
361 struct device dev;
363 u32 phy_id;
365 struct phy_c45_device_ids c45_ids;
366 bool is_c45;
367 bool is_internal;
368 bool has_fixups;
369 bool suspended;
371 enum phy_state state;
373 u32 dev_flags;
375 phy_interface_t interface;
378 int addr;
384 int speed;
385 int duplex;
386 int pause;
387 int asym_pause;
390 int link;
393 u32 interrupts;
397 u32 supported;
398 u32 advertising;
399 u32 lp_advertising;
401 int autoneg;
426 #define to_phy_device(d) container_of(d, struct phy_device, dev) argument