You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# SPDX-License-Identifier: GPL-2.0
|
|
cec-objs := cec-core.o cec-adap.o cec-api.o cec-edid.o
|
|
|
|
ifeq ($(CONFIG_CEC_NOTIFIER),y)
|
|
cec-objs += cec-notifier.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_CEC_PIN),y)
|
|
cec-objs += cec-pin.o
|
|
endif
|
|
|
|
obj-$(CONFIG_CEC_CORE) += cec.o
|
|
|