mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 01:38:22 +00:00
dcbf825714
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>
19 lines
504 B
Makefile
19 lines
504 B
Makefile
#
|
|
# (C) Copyright 2000-2007
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DM_KEYBOARD) += keyboard-uclass.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
|
|
ifdef CONFIG_PS2KBD
|
|
obj-y += keyboard.o pc_keyb.o
|
|
obj-$(CONFIG_PS2MULT) += ps2mult.o ps2ser.o
|
|
endif
|
|
obj-y += input.o
|
|
obj-$(CONFIG_$(SPL_)OF_CONTROL) += key_matrix.o
|