diff options
author | Simon Glass <sjg@chromium.org> | 2015-11-11 10:05:45 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-11-19 20:13:41 -0700 |
commit | dcbf825714e27a4c39edcc36c7623b37bc40040a (patch) | |
tree | 18a0809ce4339a0f91819e09216a2ac45c89af4e /drivers/input/Makefile | |
parent | 51a8a72dc5064eb6d2f800a1da883a044b17c58b (diff) | |
download | u-boot-dcbf825714e27a4c39edcc36c7623b37bc40040a.tar.gz |
input: Convert i8042 to driver model
Adjust this driver to support driver model. The only users are x86 boards
so this should be safe.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/input/Makefile')
-rw-r--r-- | drivers/input/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/Makefile b/drivers/input/Makefile index 9388dfe700..5f15265be5 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -7,7 +7,7 @@ obj-$(CONFIG_DM_KEYBOARD) += keyboard-uclass.o -obj-$(CONFIG_I8042_KBD) += i8042.o +obj-$(CONFIG_I8042_KEYB) += i8042.o obj-$(CONFIG_TEGRA_KEYBOARD) += tegra-kbc.o obj-$(CONFIG_TWL4030_INPUT) += twl4030.o obj-$(CONFIG_CROS_EC_KEYB) += cros_ec_keyb.o |