diff options
author | Dave Airlie <airlied@redhat.com> | 2014-07-23 13:01:56 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-07-23 13:01:56 +1000 |
commit | 8a105aaa25f4504d26ca828f12d709d2213a230e (patch) | |
tree | 46ac9e1fba4abeaa97b957258ded90abf385389f /include/drm/drm_crtc.h | |
parent | 7296c849bf2eca2bd7d34a4686a53e3089150ac1 (diff) | |
parent | 9611cb93fa65dde199f4f888bd034ffc80c7adf0 (diff) | |
download | blackbird-obmc-linux-8a105aaa25f4504d26ca828f12d709d2213a230e.tar.gz blackbird-obmc-linux-8a105aaa25f4504d26ca828f12d709d2213a230e.zip |
Merge branch 'drm-armada-devel' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into drm-next
Merge armada changes, I've confirmed the componenet changes are same as in Greg's tree.
* 'drm-armada-devel' of git://ftp.arm.linux.org.uk/~rmk/linux-arm:
drm/armada: register crtc with port
drm/armada: permit CRTCs to be registered as separate devices
dt-bindings: add Marvell Dove LCD controller documentation
drm/armada: update Armada 510 (Dove) to use "ext_ref_clk1" as the clock
drm/armada: convert to componentized support
drm: add of_graph endpoint helper to find possible CRTCs
component: fix bug with legacy API
drm/armada: make variant a CRTC thing
drm/armada: move variant initialisation to CRTC init
drm/armada: use number of CRTCs registered
drm/armada: move IRQ handling into CRTC
component: add support for component match array
component: ignore multiple additions of the same component
component: fix missed cleanup in case of devres failure
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index e529b68d5037..7f1bc7e4848b 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -41,6 +41,7 @@ struct drm_framebuffer; struct drm_object_properties; struct drm_file; struct drm_clip_rect; +struct device_node; #define DRM_MODE_OBJECT_CRTC 0xcccccccc #define DRM_MODE_OBJECT_CONNECTOR 0xc0c0c0c0 @@ -314,6 +315,7 @@ struct drm_crtc_funcs { */ struct drm_crtc { struct drm_device *dev; + struct device_node *port; struct list_head head; /** |