Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346974
b: refs/heads/master
c: 91c5d67
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Nov 29, 2012
1 parent a974e45 commit 291c98e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5cc0dfe043f84a777bf9d66dc48cc2b83709c9ef
refs/heads/master: 91c5d67f17784078169bdcce4c21df82ac6c234c
6 changes: 3 additions & 3 deletions trunk/drivers/input/keyboard/tca8418_keypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ static int tca8418_keypad_probe(struct i2c_client *client,
error = matrix_keypad_build_keymap(keymap_data, NULL, rows, cols,
keypad_data->keymap, input);
if (error) {
dev_dbg(dev, "Failed to build keymap\n");
dev_err(dev, "Failed to build keymap\n");
goto fail2;
}

Expand All @@ -367,14 +367,14 @@ static int tca8418_keypad_probe(struct i2c_client *client,
IRQF_ONESHOT,
client->name, keypad_data);
if (error) {
dev_dbg(dev, "Unable to claim irq %d; error %d\n",
dev_err(dev, "Unable to claim irq %d; error %d\n",
client->irq, error);
goto fail2;
}

error = input_register_device(input);
if (error) {
dev_dbg(dev, "Unable to register input device, error: %d\n",
dev_err(dev, "Unable to register input device, error: %d\n",
error);
goto fail3;
}
Expand Down

0 comments on commit 291c98e

Please sign in to comment.