diff options
author | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-31 11:39:11 +0400 |
---|---|---|
committer | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-31 11:39:11 +0400 |
commit | 9bbf86fe874cce0169f0e1152d96f0591e680874 (patch) | |
tree | 844f5e119ffd0b9d690dde389aa89ddda0b171e2 /drivers/gpu/drm/sti/Makefile | |
parent | d219673d8437ff1073c11d30ac496fa42b09662c (diff) | |
download | linux-9bbf86fe874cce0169f0e1152d96f0591e680874.tar.xz |
drm: sti: Add DRM driver itself
Make the link between all the hardware drivers and DRM/KMS interface.
Create the driver itself and make it register all the sub-components.
Use GEM CMA helpers for buffer allocation.
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/sti/Makefile')
-rw-r--r-- | drivers/gpu/drm/sti/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/gpu/drm/sti/Makefile b/drivers/gpu/drm/sti/Makefile index c5838f20f122..04ac2ceef27f 100644 --- a/drivers/gpu/drm/sti/Makefile +++ b/drivers/gpu/drm/sti/Makefile @@ -3,7 +3,9 @@ sticompositor-y := \ sti_mixer.o \ sti_gdp.o \ sti_vid.o \ - sti_compositor.o + sti_compositor.o \ + sti_drm_crtc.o \ + sti_drm_plane.o stihdmi-y := sti_hdmi.o \ sti_hdmi_tx3g0c55phy.o \ @@ -15,4 +17,5 @@ obj-$(CONFIG_DRM_STI) = \ stihdmi.o \ sti_hda.o \ sti_tvout.o \ - sticompositor.o
\ No newline at end of file + sticompositor.o \ + sti_drm_drv.o
\ No newline at end of file |