diff options
author | Cyril Hrubis <metan@ucw.cz> | 2010-01-07 21:31:04 +0100 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-01-08 09:42:45 +0800 |
commit | d13fecd0293d55a4bcb8a31078216504192d8ce0 (patch) | |
tree | b3759788af8f01f57693054f2366fc32237a4f6f /arch/arm | |
parent | 0dfc84c9f54d8784f5bc6d303c079d88000ee5f7 (diff) | |
download | linux-d13fecd0293d55a4bcb8a31078216504192d8ce0.tar.gz linux-d13fecd0293d55a4bcb8a31078216504192d8ce0.tar.xz |
[ARM] pxa: fix strange characters in zaurus gpio .desc
Somehow, strange characters made their way zaurus gpio .desc
fields. Fix it.
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Acked-by: Stanislav Brabec <utx@penguin.cz>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 4b50f144fa48..28352c0b8c34 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c @@ -389,13 +389,13 @@ static struct gpio_keys_button spitz_gpio_keys[] = { .type = EV_SW, .code = 0, .gpio = SPITZ_GPIO_SWA, - .desc = "Display Down", + .desc = "Display Down", }, { .type = EV_SW, .code = 1, .gpio = SPITZ_GPIO_SWB, - .desc = "Lid Closed", + .desc = "Lid Closed", }, }; |