diff options
author | Mark Yao <mark.yao@rock-chips.com> | 2014-08-22 18:36:26 +0800 |
---|---|---|
committer | yzq <yzq@rock-chips.com> | 2014-12-02 17:29:03 +0800 |
commit | 2048e3286f347db5667708e47448176b5329e8d8 (patch) | |
tree | 966abfea070bda16bb9092c9aea2483cbba674e7 /drivers/gpu/drm/rockchip/Makefile | |
parent | 656d7077d8ffd1c2492d4a0a354367ab2e545059 (diff) | |
download | blackbird-op-linux-2048e3286f347db5667708e47448176b5329e8d8.tar.gz blackbird-op-linux-2048e3286f347db5667708e47448176b5329e8d8.zip |
drm: rockchip: Add basic drm driver
This patch adds the basic structure of a DRM Driver for Rockchip Socs.
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Acked-by: Daniel Vetter <daniel@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/rockchip/Makefile')
-rw-r--r-- | drivers/gpu/drm/rockchip/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/rockchip/Makefile b/drivers/gpu/drm/rockchip/Makefile new file mode 100644 index 000000000000..2cb0672f57ed --- /dev/null +++ b/drivers/gpu/drm/rockchip/Makefile @@ -0,0 +1,8 @@ +# +# Makefile for the drm device driver. This driver provides support for the +# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. + +rockchipdrm-y := rockchip_drm_drv.o rockchip_drm_fb.o rockchip_drm_fbdev.o \ + rockchip_drm_gem.o + +obj-$(CONFIG_DRM_ROCKCHIP) += rockchipdrm.o rockchip_drm_vop.o |