diff options
author | wdenk | 2004-04-18 22:03:42 +0000 |
---|---|---|
committer | wdenk | 2004-04-18 22:03:42 +0000 |
commit | a8bd82de4671edd5ab1114802b66d2ff5fb90e1f (patch) | |
tree | 08b99d8039aeb72dc1e912924c98bc3bf3a356b5 /net | |
parent | 7abf0c5886c395a3cc7e11f191d67be9a964a1bf (diff) |
* Patch by Sangmoon Kim, 12 Apr 2004:
Update max RAM size for debris board
* Patch by Travis Sawyer, 08 Apr 2004:
Add TLB entry for second DIMM slot on ocotea
* Patch by Masami Komiya, 08 Apr 2004:
add RTL8169 network driver
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/eth.c b/net/eth.c index 7f8afe7bcff..ef65934e42f 100644 --- a/net/eth.c +++ b/net/eth.c @@ -48,6 +48,7 @@ extern int plb2800_eth_initialize(bd_t*); extern int ppc_4xx_eth_initialize(bd_t *); extern int ppc_440x_eth_initialize(bd_t *); extern int rtl8139_initialize(bd_t*); +extern int rtl8169_initialize(bd_t*); extern int scc_initialize(bd_t*); extern int skge_initialize(bd_t*); extern int tsec_initialize(bd_t*); @@ -178,6 +179,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_RTL8139) rtl8139_initialize(bis); #endif +#if defined(CONFIG_RTL8169) + rtl8169_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |