mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
c582778900
The driver has been converted to use drm_bridge instead of drm_i2c_slave_encoder. We can now move it to the bridge folder. Create a separate folder since we already have a couple of files and expect more when we support audio and ADV7533. Rename the driver to adv7511_drv.c. This will come in handy later when the driver module will need to be built from multiple object files. Signed-off-by: Archit Taneja <architt@codeaurora.org>
10 lines
250 B
Makefile
10 lines
250 B
Makefile
ccflags-y := -Iinclude/drm
|
|
|
|
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
|