From: Alexey Brodkin Date: Wed, 13 Jan 2016 13:59:35 +0000 (+0300) Subject: include/net.h: add max_speed member in struct eth_pdata X-Git-Tag: v2016.03-rc1~42^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f74264d6614a0c093a7c32e996f2b26058eead5d;p=platform%2Fkernel%2Fu-boot.git include/net.h: add max_speed member in struct eth_pdata This will be used for getting max speed mode of Ethernet interface that a particular MAC supports from Device Tree blob and later being used for phy configuration. Signed-off-by: Alexey Brodkin Cc: Joe Hershberger Acked-by: Joe Hershberger --- diff --git a/include/net.h b/include/net.h index ebed29a..7dbba09 100644 --- a/include/net.h +++ b/include/net.h @@ -86,11 +86,13 @@ enum eth_state_t { * @iobase: The base address of the hardware registers * @enetaddr: The Ethernet MAC address that is loaded from EEPROM or env * @phy_interface: PHY interface to use - see PHY_INTERFACE_MODE_... + * @max_speed: Maximum speed of Ethernet connection supported by MAC */ struct eth_pdata { phys_addr_t iobase; unsigned char enetaddr[6]; int phy_interface; + int max_speed; }; enum eth_recv_flags {