* 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
diff --git a/net/eth.c b/net/eth.c
index 7f8afe7..ef65934 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -48,6 +48,7 @@
 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 @@
 #if defined(CONFIG_RTL8139)
 	rtl8139_initialize(bis);
 #endif
+#if defined(CONFIG_RTL8169)
+	rtl8169_initialize(bis);
+#endif
 
 	if (!eth_devices) {
 		puts ("No ethernet found.\n");