diff options
Diffstat (limited to 'arch/arm/mach-s5pv210/setup-keypad.c')
-rw-r--r-- | arch/arm/mach-s5pv210/setup-keypad.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mach-s5pv210/setup-keypad.c b/arch/arm/mach-s5pv210/setup-keypad.c index cb3f409f022c..c56420a52f48 100644 --- a/arch/arm/mach-s5pv210/setup-keypad.c +++ b/arch/arm/mach-s5pv210/setup-keypad.c | |||
@@ -17,10 +17,8 @@ | |||
17 | void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) | 17 | void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) |
18 | { | 18 | { |
19 | /* Set all the necessary GPH3 pins to special-function 3: KP_ROW[x] */ | 19 | /* Set all the necessary GPH3 pins to special-function 3: KP_ROW[x] */ |
20 | s3c_gpio_cfgall_range(S5PV210_GPH3(0), rows, | 20 | s3c_gpio_cfgrange_nopull(S5PV210_GPH3(0), rows, S3C_GPIO_SFN(3)); |
21 | S3C_GPIO_SFN(3), S3C_GPIO_PULL_NONE); | ||
22 | 21 | ||
23 | /* Set all the necessary GPH2 pins to special-function 3: KP_COL[x] */ | 22 | /* Set all the necessary GPH2 pins to special-function 3: KP_COL[x] */ |
24 | s3c_gpio_cfgall_range(S5PV210_GPH2(0), cols, | 23 | s3c_gpio_cfgrange_nopull(S5PV210_GPH2(0), cols, S3C_GPIO_SFN(3)); |
25 | S3C_GPIO_SFN(3), S3C_GPIO_PULL_NONE); | ||
26 | } | 24 | } |