diff options
author | Simon Glass | 2015-11-29 13:18:01 -0700 |
---|---|---|
committer | Simon Glass | 2016-01-12 10:19:09 -0700 |
commit | 96350f729c4244bae879c39449ef5d6caf553e62 (patch) | |
tree | 178d2d887ba38353430a4b2522f7bb44c7faee3f /board/nvidia/cardhu | |
parent | 170366c113b6ccadaceb8fcc76da7371d124e0c1 (diff) |
dm: tegra: net: Convert tegra boards to driver model for Ethernet
Adjust all Tegra boards to use driver model for Ethernet, now that the
required drivers are converted.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'board/nvidia/cardhu')
-rw-r--r-- | board/nvidia/cardhu/cardhu.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/nvidia/cardhu/cardhu.c b/board/nvidia/cardhu/cardhu.c index 1540526a613..ba15e2e6cf0 100644 --- a/board/nvidia/cardhu/cardhu.c +++ b/board/nvidia/cardhu/cardhu.c @@ -13,7 +13,6 @@ #include <asm/gpio.h> #include "pinmux-config-cardhu.h" #include <i2c.h> -#include <netdev.h> #define PMU_I2C_ADDRESS 0x2D #define MAX_I2C_RETRY 3 @@ -129,9 +128,4 @@ int tegra_pcie_board_init(void) return 0; } - -int board_eth_init(bd_t *bis) -{ - return pci_eth_init(bis); -} #endif /* PCI */ |