diff options
author | Eric Miao <eric.miao@marvell.com> | 2008-06-02 01:32:42 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-07-09 16:38:31 -0400 |
commit | 36caeb4ec147dacb04e723080816e78f288f47cc (patch) | |
tree | 7b4a3759ed2f8712bed8b43201a4f8355cde6641 /arch/arm/mach-pxa/mainstone.c | |
parent | 8a6e88736066fddec77aa33a18ffa0c5f8eb2def (diff) |
[ARM] pxa: fix typo of CONFIG_*_MODULE
The correct macro name when a driver is built as a module is
CONFIG_*_MODULE instead of CONFIG_*_MODULES. This patch fixes
this in several places.
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/mainstone.c')
-rw-r--r-- | arch/arm/mach-pxa/mainstone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/mainstone.c b/arch/arm/mach-pxa/mainstone.c index f2e9e7c4da8e..6c3c37ccf586 100644 --- a/arch/arm/mach-pxa/mainstone.c +++ b/arch/arm/mach-pxa/mainstone.c | |||
@@ -513,7 +513,7 @@ static struct pxaohci_platform_data mainstone_ohci_platform_data = { | |||
513 | .init = mainstone_ohci_init, | 513 | .init = mainstone_ohci_init, |
514 | }; | 514 | }; |
515 | 515 | ||
516 | #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULES) | 516 | #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE) |
517 | static unsigned int mainstone_matrix_keys[] = { | 517 | static unsigned int mainstone_matrix_keys[] = { |
518 | KEY(0, 0, KEY_A), KEY(1, 0, KEY_B), KEY(2, 0, KEY_C), | 518 | KEY(0, 0, KEY_A), KEY(1, 0, KEY_B), KEY(2, 0, KEY_C), |
519 | KEY(3, 0, KEY_D), KEY(4, 0, KEY_E), KEY(5, 0, KEY_F), | 519 | KEY(3, 0, KEY_D), KEY(4, 0, KEY_E), KEY(5, 0, KEY_F), |