mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
c889b04775
PD#SWPL-240353 Problem: filter events from every input devices Solution: filter events from every input devices Verify: t6d_br301 Change-Id: Iffd08ba5ddc7e5aafe7f28eb0283c26324f1c0e2 Signed-off-by: Zelong Dong <zelong.dong@amlogic.com>
17 lines
630 B
Makefile
17 lines
630 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
MODULE_NAME = amlogic-input
|
|
|
|
PR_FMT = $(subst amlogic-,,$(MODULE_NAME))
|
|
PR_FMT_DEFINE="-Dpr_fmt(fmt)= \"[$(PR_FMT)]: \" fmt"
|
|
ccflags-y += $(PR_FMT_DEFINE)
|
|
|
|
obj-$(CONFIG_AMLOGIC_INPUT) = $(MODULE_NAME).o
|
|
$(MODULE_NAME)-y = main.o
|
|
|
|
include $(srctree)/$(COMMON_DRIVERS_DIR)/drivers/input/ir/Makefile
|
|
include $(srctree)/$(COMMON_DRIVERS_DIR)/drivers/input/keyboard/Makefile
|
|
include $(srctree)/$(COMMON_DRIVERS_DIR)/drivers/input/meson_pmic6b/Makefile
|
|
include $(srctree)/$(COMMON_DRIVERS_DIR)/drivers/input/watchkey/Makefile
|
|
include $(srctree)/$(COMMON_DRIVERS_DIR)/drivers/input/misc/Makefile
|