mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 23:05:14 +07:00
df823a8208
Most CEC platform drivers are using VIDEO_*_CEC pattern, some with an _HDMI extension too. Well, they're not related to V4L2 support, and we don't really need those big config names. So drop VIDEO_* from them, remove _HDMI (if present) and move CEC to the start. This way, all platform driver options are now CEC_<driver>. Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
15 lines
375 B
Makefile
15 lines
375 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the CEC platform device drivers.
|
|
#
|
|
|
|
# Please keep it in alphabetic order
|
|
obj-$(CONFIG_CEC_CROS_EC) += cros-ec/
|
|
obj-$(CONFIG_CEC_GPIO) += cec-gpio/
|
|
obj-$(CONFIG_CEC_MESON_AO) += meson/
|
|
obj-$(CONFIG_CEC_SAMSUNG_S5P) += s5p/
|
|
obj-$(CONFIG_CEC_SECO) += seco/
|
|
obj-$(CONFIG_CEC_STI) += sti/
|
|
obj-$(CONFIG_CEC_TEGRA) += tegra/
|
|
|