dm: tegra: net: Convert tegra boards to driver model for Ethernet
authorSimon Glass <sjg@chromium.org>
Sun, 29 Nov 2015 20:18:01 +0000 (13:18 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 12 Jan 2016 17:19:09 +0000 (10:19 -0700)
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>
arch/arm/mach-tegra/Kconfig
board/compulab/trimslice/trimslice.c
board/nvidia/cardhu/cardhu.c
board/nvidia/jetson-tk1/jetson-tk1.c
board/nvidia/p2371-2180/p2371-2180.c
board/toradex/apalis_t30/apalis_t30.c

index fbfb204e6ec87f3e926e52ecd3e5bcf749cdfd1e..48a387c95713cf33cf8677e34f4275dd01cc2bf1 100644 (file)
@@ -3,6 +3,7 @@ if TEGRA
 config TEGRA_COMMON
        bool "Tegra common options"
        select DM
+       select DM_ETH
        select DM_GPIO
        select DM_I2C
        select DM_KEYBOARD
index c9da80d5eb1c31cd55909cb7cf0da1e11cb7b17f..723293fef35af7aa3f35588a7d54694da732d1ba 100644 (file)
@@ -13,7 +13,6 @@
 #include <asm/arch/pinmux.h>
 #include <asm/gpio.h>
 #include <i2c.h>
-#include <netdev.h>
 
 void pin_mux_usb(void)
 {
@@ -41,10 +40,3 @@ void pin_mux_mmc(void)
        /* For CD GPIO PP1 */
        pinmux_tristate_disable(PMUX_PINGRP_DAP3);
 }
-
-#ifdef CONFIG_PCI
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}
-#endif
index 1540526a61348eb1959a6f6864b135c648adcbd6..ba15e2e6cf0c46009d4dced3ff2d6c3fd995322b 100644 (file)
@@ -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 */
index 52425a8f6dea2622496c27d14b007c9a2103d385..6f189aa74e593f61aa857fe2739bcc1ddc9dcc5b 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <common.h>
-#include <netdev.h>
 #include <power/as3722.h>
 
 #include <asm/arch/gpio.h>
@@ -73,9 +72,4 @@ int tegra_pcie_board_init(void)
 
        return 0;
 }
-
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}
 #endif /* PCI */
index 57f577d85d9687eff7195465beff8bf18fb8835c..0f587eaaa79695aafe5f9918546cce4e643521e8 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <common.h>
-#include <netdev.h>
 #include <i2c.h>
 #include <asm/arch/gpio.h>
 #include <asm/arch/pinmux.h>
@@ -73,9 +72,4 @@ int tegra_pcie_board_init(void)
 
        return 0;
 }
-
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}
 #endif /* PCI */
index 879006f8e05623f24de7cb0dc23a8e9bf093c6bc..3f56971a13b15416549bdfbdd8d380f61d77476d 100644 (file)
@@ -14,7 +14,6 @@
 #include <asm/io.h>
 #include <dm.h>
 #include <i2c.h>
-#include <netdev.h>
 
 #include "pinmux-config-apalis_t30.h"
 
@@ -92,9 +91,4 @@ int tegra_pcie_board_init(void)
 
        return 0;
 }
-
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}
 #endif /* CONFIG_PCI_TEGRA */