diff options
author | Pavel Machek <pavel@ucw.cz> | 2010-05-05 15:03:12 +0800 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-05-06 11:12:11 +0800 |
commit | b53f7710610215b6d53a5caea082d3afede142ea (patch) | |
tree | 72d9b938072f11cf2706a3d12ef888e34d9ab36a /arch/arm/mach-pxa/spitz.c | |
parent | 5d2fec5df1631076ce1d27c61def201aabc31167 (diff) | |
download | linux-3.10-b53f7710610215b6d53a5caea082d3afede142ea.tar.gz linux-3.10-b53f7710610215b6d53a5caea082d3afede142ea.tar.bz2 linux-3.10-b53f7710610215b6d53a5caea082d3afede142ea.zip |
[ARM] pxa/spitz: fix On/off key name to fix warning during boot
On/Off contains slash in the name, which causes warning during boot.
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/spitz.c')
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 19b5109d980..01bdd7500df 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c @@ -363,7 +363,7 @@ static struct gpio_keys_button spitz_gpio_keys[] = { .type = EV_PWR, .code = KEY_SUSPEND, .gpio = SPITZ_GPIO_ON_KEY, - .desc = "On/Off", + .desc = "On Off", .wakeup = 1, }, /* Two buttons detecting the lid state */ |