diff options
author | Stefan Agner <stefan@agner.ch> | 2016-11-17 04:14:06 +0300 |
---|---|---|
committer | Stefan Agner <stefan@agner.ch> | 2016-11-29 04:33:52 +0300 |
commit | c162215f570567b3a264d8e1abb50971d78bbaf3 (patch) | |
tree | c904ceaf354baa89f889eca8abba825342234312 /drivers/gpu/drm/fsl-dcu/Makefile | |
parent | 238e4f44c05644089968fbd1a701a6be58ddb546 (diff) | |
download | linux-c162215f570567b3a264d8e1abb50971d78bbaf3.tar.xz |
drm/fsl-dcu: remove separate compilation unit for fbdev emulation
The separate file fsl_dcu_drm_fbdev.c only initialized fbdev
emulation which is a one-line operation. There is not much more
code on sight which justifies a separate file, hence call the
initialization helper directly from the drv file.
Signed-off-by: Stefan Agner <stefan@agner.ch>
Diffstat (limited to 'drivers/gpu/drm/fsl-dcu/Makefile')
-rw-r--r-- | drivers/gpu/drm/fsl-dcu/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/fsl-dcu/Makefile b/drivers/gpu/drm/fsl-dcu/Makefile index b35a292287f3..aca34f656bea 100644 --- a/drivers/gpu/drm/fsl-dcu/Makefile +++ b/drivers/gpu/drm/fsl-dcu/Makefile @@ -3,6 +3,5 @@ fsl-dcu-drm-y := fsl_dcu_drm_drv.o \ fsl_dcu_drm_rgb.o \ fsl_dcu_drm_plane.o \ fsl_dcu_drm_crtc.o \ - fsl_dcu_drm_fbdev.o \ fsl_tcon.o obj-$(CONFIG_DRM_FSL_DCU) += fsl-dcu-drm.o |