diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-20 13:12:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-20 13:12:29 -0400 |
commit | 5ca08a82a75c9109f8207cbcbef8705334b4713a (patch) | |
tree | 5829fcfb3c79b28f80308d19ea11eb64d6d416e5 /arch/m68k/coldfire | |
parent | f4d03bd143c628b00f66cc2ec2c013767bdd1518 (diff) | |
parent | 6e4206136faa9a4d588946dfa604e1d989a9b3b6 (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
Pull m68k fixes from Greg Ungerer:
"Nothing big, spelling fixes and fix/cleanup for ColdFire eth device setup"
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
m68knommu: fix fec setup warning for ColdFire 5271 builds
m68knommu: ColdFire 5271 only has a single FEC controller
m68k: Fix trivial typos in comments
Diffstat (limited to 'arch/m68k/coldfire')
-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); |