Messages in this thread Patch in this message |  | | From | Eduardo Valentin <> | Subject | [PATCH 1/1] MFD: twl4030-core: Fix a typo in the twl_has_pwrbutton definition | Date | Wed, 10 Feb 2010 15:33:48 +0200 |
| |
From: Eduardo Valentin <eduardo.valentin@nokia.com>
Change the typo CONFIG_INPUT_TWL4030_PWBUTTON_MODULE in the twl_has_pwrbutton definition to CONFIG_INPUT_TWL4030_PWRBUTTON_MODULE.
Signed-off-by: Eduardo Valentin <eduardo.valentin@nokia.com> --- drivers/mfd/twl4030-core.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mfd/twl4030-core.c b/drivers/mfd/twl4030-core.c index 0004823..04656f8 100644 --- a/drivers/mfd/twl4030-core.c +++ b/drivers/mfd/twl4030-core.c @@ -134,7 +134,7 @@ #define TWL4030_NUM_SLAVES 4 #if defined(CONFIG_INPUT_TWL4030_PWRBUTTON) \ - || defined(CONFIG_INPUT_TWL4030_PWBUTTON_MODULE) + || defined(CONFIG_INPUT_TWL4030_PWRBUTTON_MODULE) #define twl_has_pwrbutton() true #else #define twl_has_pwrbutton() false -- 1.6.5.7.g9ecb2
|  |