diff options
author | Michal Simek <monstr@monstr.eu> | 2011-10-12 23:23:22 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-23 23:32:44 +0200 |
commit | c1044a1ec182be4c9c0b64d42ac9bf8f623d3f68 (patch) | |
tree | 9ea920a92f164ca1dfb3ede5a3fa369edf9daf7f /include | |
parent | 9b94755af9552ce3cbecfdd2f9f1fa2b322d825a (diff) | |
download | u-boot-c1044a1ec182be4c9c0b64d42ac9bf8f623d3f68.tar.gz u-boot-c1044a1ec182be4c9c0b64d42ac9bf8f623d3f68.tar.xz u-boot-c1044a1ec182be4c9c0b64d42ac9bf8f623d3f68.zip |
net: emaclite: Move RX/TX ping pong initialization to
Init RX/TX ping pong directly from board not in the driver.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'include')
-rw-r--r-- | include/netdev.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/netdev.h b/include/netdev.h index a6246777fd..54b52a51df 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -97,7 +97,8 @@ int uli526x_initialize(bd_t *bis); int armada100_fec_register(unsigned long base_addr); int xilinx_axiemac_initialize(bd_t *bis, unsigned long base_addr, unsigned long dma_addr); -int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr); +int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr, + int txpp, int rxpp); /* Boards with PCI network controllers can call this from their board_eth_init() * function to initialize whatever's on board. |