mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 08:36:48 +07:00
b250392f7b
Fix build when CONFIG_INPUT_EVDEV=m and DVB_AV7110=y. Only build av7110_ir.c when CONFIG_INPUT_EVDEV is compatible with CONFIG_DVB_AV7110. Fixes these build errors: drivers/built-in.o: In function `input_sync': av7110_ir.c:(.text+0x1223ac): undefined reference to `input_event' drivers/built-in.o: In function `av7110_emit_key': av7110_ir.c:(.text+0x12247c): undefined reference to `input_event' av7110_ir.c:(.text+0x122495): undefined reference to `input_event' av7110_ir.c:(.text+0x122569): undefined reference to `input_event' av7110_ir.c:(.text+0x1225a7): undefined reference to `input_event' drivers/built-in.o:av7110_ir.c:(.text+0x122629): more undefined references to `input_event' follow drivers/built-in.o: In function `av7110_ir_init': (.text+0x1227e4): undefined reference to `input_allocate_device' drivers/built-in.o: In function `av7110_ir_init': (.text+0x12298f): undefined reference to `input_register_device' drivers/built-in.o: In function `av7110_ir_init': (.text+0x12299e): undefined reference to `input_free_device' drivers/built-in.o: In function `av7110_ir_exit': (.text+0x122a94): undefined reference to `input_unregister_device' drivers/built-in.o: In function `av7110_detach': av7110.c:(.text+0x228d4a): undefined reference to `av7110_ir_exit' drivers/built-in.o: In function `arm_thread': av7110.c:(.text+0x22a404): undefined reference to `av7110_check_ir_config' av7110.c:(.text+0x22a626): undefined reference to `av7110_check_ir_config' drivers/built-in.o: In function `av7110_attach': av7110.c:(.text+0x22b08c): undefined reference to `av7110_ir_init' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reported-by: Randy Dunlap <rdunlap@infradead.org> Reported-by: Jim Davis <jim.epost@gmail.com> Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
22 lines
667 B
Makefile
22 lines
667 B
Makefile
#
|
|
# Makefile for the kernel SAA7146 FULL TS DVB device driver
|
|
# and the AV7110 DVB device driver
|
|
#
|
|
|
|
dvb-ttpci-objs := av7110_hw.o av7110_v4l.o av7110_av.o av7110_ca.o av7110.o av7110_ipack.o
|
|
|
|
ifdef CONFIG_DVB_AV7110_IR
|
|
dvb-ttpci-objs += av7110_ir.o
|
|
endif
|
|
|
|
obj-$(CONFIG_TTPCI_EEPROM) += ttpci-eeprom.o
|
|
obj-$(CONFIG_DVB_BUDGET_CORE) += budget-core.o
|
|
obj-$(CONFIG_DVB_BUDGET) += budget.o
|
|
obj-$(CONFIG_DVB_BUDGET_AV) += budget-av.o
|
|
obj-$(CONFIG_DVB_BUDGET_CI) += budget-ci.o
|
|
obj-$(CONFIG_DVB_BUDGET_PATCH) += budget-patch.o
|
|
obj-$(CONFIG_DVB_AV7110) += dvb-ttpci.o
|
|
|
|
ccflags-y += -Idrivers/media/dvb-core/ -Idrivers/media/dvb-frontends/
|
|
ccflags-y += -Idrivers/media/tuners
|