aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ks8695
diff options
context:
space:
mode:
authorzeal <zealcook@gmail.com>2009-11-03 02:36:55 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-11-05 20:21:25 +0000
commitc742239866250a5690485ab775b942c85c6bee63 (patch)
treea5fdcfb472c08cf61d524715736729d1989af565 /arch/arm/mach-ks8695
parentARM: 5779/1: ep93xx/micro9.c: fix implicit declaration of function __raw_readl and IOMEM (diff)
downloadlinux-dev-c742239866250a5690485ab775b942c85c6bee63.tar.xz
linux-dev-c742239866250a5690485ab775b942c85c6bee63.zip
ARM: 5780/1: KS8695: Fix macro definition bug in regs-switch.c
NOTE: 1. Macro style is so strange. 2. The value 0xc0 is not match with KS8695 manual. It should be 0x0c. Signed-off-by: zeal <zealcook@gmail.com> Acked-by: Andrew Victor <linux@maxim.org.za> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ks8695')
-rw-r--r--arch/arm/mach-ks8695/include/mach/regs-switch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ks8695/include/mach/regs-switch.h b/arch/arm/mach-ks8695/include/mach/regs-switch.h
index 56d12e8de895..97e8acb1cf6c 100644
--- a/arch/arm/mach-ks8695/include/mach/regs-switch.h
+++ b/arch/arm/mach-ks8695/include/mach/regs-switch.h
@@ -25,7 +25,7 @@
#define KS8695_SEC1 (0x04) /* Switch Engine Control 1 */
#define KS8695_SEC2 (0x08) /* Switch Engine Control 2 */
-#define KS8695_P(x)_C(z) (0xc0 + (((x)-1)*3 + ((z)-1))*4) /* Port Configuration Registers */
+#define KS8695_SEPXCZ(x,z) (0x0c + (((x)-1)*3 + ((z)-1))*4) /* Port Configuration Registers */
#define KS8695_SEP12AN (0x48) /* Port 1 & 2 Auto-Negotiation */
#define KS8695_SEP34AN (0x4c) /* Port 3 & 4 Auto-Negotiation */