diff options
author | Simon Glass <sjg@chromium.org> | 2015-11-11 10:05:37 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-11-19 20:13:41 -0700 |
commit | b1d7a1875e2f96417a2ecd7ebe1680f650c2be22 (patch) | |
tree | 7eb4423439072ef0ed95653a9cacc9ac07aef14b /drivers/input/cros_ec_keyb.c | |
parent | 9961a0b6fbe199cd7b08203415a905c4c7d0a731 (diff) |
input: Support the German keymap
Add support for the German keymap, taken from i8042.c. This can be selected
when the input library it initialised.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/input/cros_ec_keyb.c')
-rw-r--r-- | drivers/input/cros_ec_keyb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/cros_ec_keyb.c b/drivers/input/cros_ec_keyb.c index fe5caea947..9bc4555c2e 100644 --- a/drivers/input/cros_ec_keyb.c +++ b/drivers/input/cros_ec_keyb.c @@ -211,7 +211,7 @@ static int cros_ec_kbd_probe(struct udevice *dev) priv->input = input; input->dev = dev; - input_add_tables(input); + input_add_tables(input, false); input->read_keys = cros_ec_kbc_check; strcpy(sdev->name, "cros-ec-keyb"); |