aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2016-01-08 01:33:49 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2016-04-05 13:17:19 -0400
commitb5ca3ea327a6467591751e4c98207281fe884da3 (patch)
treed54028c68522189d041a88bac4d21305093b146b
parenta56f9235c9702544319f8ea0ce0c3aefed23d153 (diff)
Input: omap-keypad - remove set_col_gpio_val() and get_row_gpio_val()
Commit f799a3d8fe170159257b75c1baf48a7c1f625d1d ("Input: omap-keypad: Remove dependencies to mach includes") removed users of the above functions, but left them in the code. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/keyboard/omap-keypad.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c
index 8dc34ee772ae..146b26f665f6 100644
--- a/drivers/input/keyboard/omap-keypad.c
+++ b/drivers/input/keyboard/omap-keypad.c
@@ -64,31 +64,6 @@ static DECLARE_TASKLET_DISABLED(kp_tasklet, omap_kp_tasklet, 0);
64static unsigned int *row_gpios; 64static unsigned int *row_gpios;
65static unsigned int *col_gpios; 65static unsigned int *col_gpios;
66 66
67#ifdef CONFIG_ARCH_OMAP2
68static void set_col_gpio_val(struct omap_kp *omap_kp, u8 value)
69{
70 int col;
71
72 for (col = 0; col < omap_kp->cols; col++)
73 gpio_set_value(col_gpios[col], value & (1 << col));
74}
75
76static u8 get_row_gpio_val(struct omap_kp *omap_kp)
77{
78 int row;
79 u8 value = 0;
80
81 for (row = 0; row < omap_kp->rows; row++) {
82 if (gpio_get_value(row_gpios[row]))
83 value |= (1 << row);
84 }
85 return value;
86}
87#else
88#define set_col_gpio_val(x, y) do {} while (0)
89#define get_row_gpio_val(x) 0
90#endif
91
92static irqreturn_t omap_kp_interrupt(int irq, void *dev_id) 67static irqreturn_t omap_kp_interrupt(int irq, void *dev_id)
93{ 68{
94 /* disable keyboard interrupt and schedule for handling */ 69 /* disable keyboard interrupt and schedule for handling */