[U-Boot-Users] [Patch] Fix open #ifdef statement error , if compile with MCF5282 support

15 Aug
2006
15 Aug
'06
3:16 p.m.
CHANGELOG:
* Patch by Jens Scharsig (BuS Elektronik GmbH & Co. KG), 15 Aug. 2006:
Fix:open #ifdef statement error, if compile with MCF5282 support
diff --git a/cpu/mcf52x2/fec.c b/cpu/mcf52x2/fec.c index 6db6214..f9782e5 100644 --- a/cpu/mcf52x2/fec.c +++ b/cpu/mcf52x2/fec.c @@ -257,10 +257,7 @@ int eth_init (bd_t * bd) */ fecp->fec_ihash_table_high = 0; fecp->fec_ihash_table_low = 0; -#else - /* Clear multicast address hash table - */ -#ifdef CONFIG_M5282 +#elif defined(CONFIG_M5282) fecp->fec_ihash_table_high = 0; fecp->fec_ihash_table_low = 0; #else
6841
Age (days ago)
6841
Last active (days ago)
0 comments
1 participants
participants (1)
-
Jens Scharsig