Create bridge abstraction driver to provide a framework that can be used to abstract different types of bridge chips under a common API. The framework also allows multiple drivers to control different functional aspects of a bridge chip. The bridge abstraction driver is limited to bridge chips that deal with converting audio/video data from one protocol to a different one. Change-Id: Ib42365fb41afda8029f4f6e9b1ec27549d885659 Signed-off-by: Domi Papoi <dpapoi@codeaurora.org>
15 lines
440 B
Makefile
15 lines
440 B
Makefile
obj-$(CONFIG_MSM_BA_V4L2) += msm/ba/
|
|
obj-$(CONFIG_VGASTATE) += vgastate.o
|
|
obj-$(CONFIG_HDMI) += hdmi.o
|
|
|
|
obj-$(CONFIG_ADF) += adf/
|
|
obj-$(CONFIG_VT) += console/
|
|
obj-$(CONFIG_LOGO) += logo/
|
|
obj-y += backlight/
|
|
|
|
obj-y += fbdev/
|
|
|
|
obj-$(CONFIG_VIDEOMODE_HELPERS) += display_timing.o videomode.o
|
|
ifeq ($(CONFIG_OF),y)
|
|
obj-$(CONFIG_VIDEOMODE_HELPERS) += of_display_timing.o of_videomode.o
|
|
endif
|