projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
889256e
)
[Blackfin][PATCH] Add BF537 EMAC driver initialization
author
Aubrey Li
<aubrey.adi@gmail.com>
Thu, 5 Apr 2007 10:30:25 +0000
(18:30 +0800)
committer
Aubrey Li
<aubrey.adi@gmail.com>
Thu, 5 Apr 2007 10:30:25 +0000
(18:30 +0800)
net/eth.c
patch
|
blob
|
history
diff --git
a/net/eth.c
b/net/eth.c
index cca93920594b521b634c8315462b1518d4208350..64923d99bf13ea6cdb8d08ec5f18c84be9f6b293 100644
(file)
--- a/
net/eth.c
+++ b/
net/eth.c
@@
-55,6
+55,7
@@
extern int skge_initialize(bd_t*);
extern int tsec_initialize(bd_t*, int, char *);
extern int npe_initialize(bd_t *);
extern int uec_initialize(int);
+extern int bfin_EMAC_initialize(bd_t *);
static struct eth_device *eth_devices, *eth_current;
@@
-255,6
+256,9
@@
int eth_initialize(bd_t *bis)
#if defined(CONFIG_RTL8169)
rtl8169_initialize(bis);
#endif
+#if defined(CONFIG_BF537)
+ bfin_EMAC_initialize(bis);
+#endif
if (!eth_devices) {
puts ("No ethernet found.\n");