diff options
Diffstat (limited to 'drivers/input/keyboard/tca8418_keypad.c')
-rw-r--r-- | drivers/input/keyboard/tca8418_keypad.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/input/keyboard/tca8418_keypad.c b/drivers/input/keyboard/tca8418_keypad.c index a34cc6714e5b..55c15304ddbc 100644 --- a/drivers/input/keyboard/tca8418_keypad.c +++ b/drivers/input/keyboard/tca8418_keypad.c | |||
@@ -288,8 +288,11 @@ static int tca8418_keypad_probe(struct i2c_client *client, | |||
288 | irq_is_gpio = pdata->irq_is_gpio; | 288 | irq_is_gpio = pdata->irq_is_gpio; |
289 | } else { | 289 | } else { |
290 | struct device_node *np = dev->of_node; | 290 | struct device_node *np = dev->of_node; |
291 | of_property_read_u32(np, "keypad,num-rows", &rows); | 291 | int err; |
292 | of_property_read_u32(np, "keypad,num-columns", &cols); | 292 | |
293 | err = matrix_keypad_parse_of_params(dev, &rows, &cols); | ||
294 | if (err) | ||
295 | return err; | ||
293 | rep = of_property_read_bool(np, "keypad,autorepeat"); | 296 | rep = of_property_read_bool(np, "keypad,autorepeat"); |
294 | } | 297 | } |
295 | 298 | ||