mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07: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>
11 lines
405 B
Makefile
11 lines
405 B
Makefile
ccflags-y := -Iinclude/drm
|
|
|
|
obj-$(CONFIG_DRM_ANALOGIX_ANX78XX) += analogix-anx78xx.o
|
|
obj-$(CONFIG_DRM_DW_HDMI) += dw-hdmi.o
|
|
obj-$(CONFIG_DRM_DW_HDMI_AHB_AUDIO) += dw-hdmi-ahb-audio.o
|
|
obj-$(CONFIG_DRM_NXP_PTN3460) += nxp-ptn3460.o
|
|
obj-$(CONFIG_DRM_PARADE_PS8622) += parade-ps8622.o
|
|
obj-$(CONFIG_DRM_SII902X) += sii902x.o
|
|
obj-$(CONFIG_DRM_ANALOGIX_DP) += analogix/
|
|
obj-$(CONFIG_DRM_I2C_ADV7511) += adv7511/
|