diff mbox series

[U-Boot,01/11] net: Add priv_pdata to eth_pdata

Message ID 20190318082441.16635-2-faiz_abbas@ti.com
State Accepted
Commit 3c6add986f1cfca8651e5bfd5a8dbefa6d89ecc9
Delegated to: Tom Rini
Headers show
Series Fix Ethernet boot in am335x | expand

Commit Message

Faiz Abbas March 18, 2019, 8:24 a.m. UTC
Add a priv member for eth_pdata for platform specific platform data.

Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
---
 include/net.h | 2 ++
 1 file changed, 2 insertions(+)

Comments

Tom Rini April 12, 2019, 4:31 p.m. UTC | #1
On Mon, Mar 18, 2019 at 01:54:31PM +0530, Faiz Abbas wrote:

> Add a priv member for eth_pdata for platform specific platform data.
> 
> Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/net.h b/include/net.h
index dd52ed3f47..44b32385c4 100644
--- a/include/net.h
+++ b/include/net.h
@@ -92,12 +92,14 @@  enum eth_state_t {
  * @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
+ * @priv_pdata: device specific platdata
  */
 struct eth_pdata {
 	phys_addr_t iobase;
 	unsigned char enetaddr[ARP_HLEN];
 	int phy_interface;
 	int max_speed;
+	void *priv_pdata;
 };
 
 enum eth_recv_flags {