mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
f0316f9389
Add a CEC driver for the TDA9950, which is a stand-alone I2C CEC device, but is also integrated into HDMI transceivers such as the TDA9989 and TDA19989. The TDA9950 contains a command processor which handles retransmissions and the low level bus protocol. The driver just has to read and write the messages, and handle error conditions. Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
11 lines
304 B
Makefile
11 lines
304 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ch7006-y := ch7006_drv.o ch7006_mode.o
|
|
obj-$(CONFIG_DRM_I2C_CH7006) += ch7006.o
|
|
|
|
sil164-y := sil164_drv.o
|
|
obj-$(CONFIG_DRM_I2C_SIL164) += sil164.o
|
|
|
|
tda998x-y := tda998x_drv.o
|
|
obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o
|
|
obj-$(CONFIG_DRM_I2C_NXP_TDA9950) += tda9950.o
|