diff options
-rw-r--r-- | arch/m68k/coldfire/m527x.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68k/coldfire/m527x.c b/arch/m68k/coldfire/m527x.c index 2ba470735bed..c0b3e28f91df 100644 --- a/arch/m68k/coldfire/m527x.c +++ b/arch/m68k/coldfire/m527x.c | |||
@@ -92,7 +92,6 @@ static void __init m527x_uarts_init(void) | |||
92 | 92 | ||
93 | static void __init m527x_fec_init(void) | 93 | static void __init m527x_fec_init(void) |
94 | { | 94 | { |
95 | u16 par; | ||
96 | u8 v; | 95 | u8 v; |
97 | 96 | ||
98 | /* Set multi-function pins to ethernet mode for fec0 */ | 97 | /* Set multi-function pins to ethernet mode for fec0 */ |
@@ -100,6 +99,8 @@ static void __init m527x_fec_init(void) | |||
100 | v = readb(MCFGPIO_PAR_FECI2C); | 99 | v = readb(MCFGPIO_PAR_FECI2C); |
101 | writeb(v | 0xf0, MCFGPIO_PAR_FECI2C); | 100 | writeb(v | 0xf0, MCFGPIO_PAR_FECI2C); |
102 | #else | 101 | #else |
102 | u16 par; | ||
103 | |||
103 | par = readw(MCFGPIO_PAR_FECI2C); | 104 | par = readw(MCFGPIO_PAR_FECI2C); |
104 | writew(par | 0xf00, MCFGPIO_PAR_FECI2C); | 105 | writew(par | 0xf00, MCFGPIO_PAR_FECI2C); |
105 | v = readb(MCFGPIO_PAR_FEC0HL); | 106 | v = readb(MCFGPIO_PAR_FEC0HL); |