Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c5827789 authored by Archit Taneja's avatar Archit Taneja
Browse files

drm/i2c: adv7511: Move to bridge folder



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: default avatarArchit Taneja <architt@codeaurora.org>
parent e12c2f64
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -60,4 +60,6 @@ config DRM_SII902X

source "drivers/gpu/drm/bridge/analogix/Kconfig"

source "drivers/gpu/drm/bridge/adv7511/Kconfig"

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -7,3 +7,4 @@ 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/
+7 −0
Original line number Diff line number Diff line
config DRM_I2C_ADV7511
	tristate "AV7511 encoder"
	depends on OF
	select DRM_KMS_HELPER
	select REGMAP_I2C
	help
	  Support for the Analog Device ADV7511(W) and ADV7513 HDMI encoders.
+2 −0
Original line number Diff line number Diff line
adv7511-y := adv7511_drv.o
obj-$(CONFIG_DRM_I2C_ADV7511) += adv7511.o
Loading