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

Commit 87edc283 authored by Ray Zhang's avatar Ray Zhang
Browse files

msm: ext_display: move ext_display out of FB driver



Make ext_display a standalone module independent of
framebuffer driver, so that it could be shared by
various drivers such as framebuffer and KMS.

CRs-Fixed: 2010135
Change-Id: I336c556cbfbd66d3cb3467acaea038d5d3651f67
Signed-off-by: default avatarRay Zhang <rayz@codeaurora.org>
parent 33e1141e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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.
+7 −0
Original line number Diff line number Diff line
@@ -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
+1 −0
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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");
+2 −0
Original line number Diff line number Diff line
@@ -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
Loading