Merge "msm: ext_display: move ext_display out of FB driver"
This commit is contained in:
commit
25becb4433
6 changed files with 12 additions and 2 deletions
|
@ -11,6 +11,7 @@ config DRM_MSM
|
|||
select TMPFS
|
||||
select QCOM_SCM
|
||||
select BACKLIGHT_CLASS_DEVICE
|
||||
select MSM_EXT_DISPLAY
|
||||
default y
|
||||
help
|
||||
DRM/KMS driver for MSM/snapdragon.
|
||||
|
|
|
@ -217,4 +217,11 @@ config USB_BAM
|
|||
Enabling this option adds USB BAM Driver.
|
||||
USB BAM driver was added to supports SPS Peripheral-to-Peripheral
|
||||
transfers between the USB and other peripheral.
|
||||
|
||||
config MSM_EXT_DISPLAY
|
||||
bool "MSM External Display Driver"
|
||||
help
|
||||
Enabling this option adds MSM External Display Driver.
|
||||
External Display driver was added to support the communication
|
||||
between external display driver and its couterparts.
|
||||
endmenu
|
||||
|
|
|
@ -16,3 +16,4 @@ obj-$(CONFIG_SEEMP_CORE) += seemp_core/
|
|||
obj-$(CONFIG_SSM) += ssm.o
|
||||
obj-$(CONFIG_USB_BAM) += usb_bam.o
|
||||
obj-$(CONFIG_MSM_MHI_DEV) += mhi_dev/
|
||||
obj-$(CONFIG_MSM_EXT_DISPLAY) += msm_ext_display.o
|
||||
|
|
|
@ -875,7 +875,7 @@ static void __exit msm_ext_disp_exit(void)
|
|||
platform_driver_unregister(&this_driver);
|
||||
}
|
||||
|
||||
module_init(msm_ext_disp_init);
|
||||
subsys_initcall(msm_ext_disp_init);
|
||||
module_exit(msm_ext_disp_exit);
|
||||
|
||||
MODULE_LICENSE("GPL v2");
|
|
@ -63,6 +63,7 @@ config FB_MSM_MDSS_WRITEBACK
|
|||
|
||||
config FB_MSM_MDSS_HDMI_PANEL
|
||||
depends on FB_MSM_MDSS
|
||||
select MSM_EXT_DISPLAY
|
||||
bool "MDSS HDMI Tx Panel"
|
||||
default n
|
||||
---help---
|
||||
|
@ -98,6 +99,7 @@ config FB_MSM_MDSS_DSI_CTRL_STATUS
|
|||
|
||||
config FB_MSM_MDSS_DP_PANEL
|
||||
depends on FB_MSM_MDSS
|
||||
select MSM_EXT_DISPLAY
|
||||
bool "MDSS DP Panel"
|
||||
---help---
|
||||
The MDSS DP Panel provides support for DP host controller driver
|
||||
|
|
|
@ -49,7 +49,6 @@ obj-$(CONFIG_FB_MSM_MDSS_DP_PANEL) += mdss_dp_aux.o
|
|||
obj-$(CONFIG_FB_MSM_MDSS_DP_PANEL) += mdss_dp_hdcp2p2.o
|
||||
|
||||
obj-$(CONFIG_FB_MSM_MDSS) += mdss_io_util.o
|
||||
obj-$(CONFIG_FB_MSM_MDSS) += msm_ext_display.o
|
||||
obj-$(CONFIG_FB_MSM_MDSS_HDMI_PANEL) += mdss_hdmi_tx.o
|
||||
obj-$(CONFIG_FB_MSM_MDSS_HDMI_PANEL) += mdss_hdmi_panel.o
|
||||
obj-$(CONFIG_FB_MSM_MDSS_HDMI_PANEL) += mdss_hdmi_hdcp2p2.o
|
||||
|
|
Loading…
Add table
Reference in a new issue