diff options
author | Dave Airlie <airlied@redhat.com> | 2014-04-28 09:16:37 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-04-28 09:16:37 +1000 |
commit | 917db410450e265b82ac36ad1cbbfd5f3ca9a204 (patch) | |
tree | 1722badad4571d28318c71a6d9001262eadc78df /drivers/gpu | |
parent | 9e5e7beb36a0a2299e24f8e7c67f7aba7a87f50c (diff) | |
parent | 2b4c36612efac173397756398000921a7771fdda (diff) | |
download | op-kernel-dev-917db410450e265b82ac36ad1cbbfd5f3ca9a204.zip op-kernel-dev-917db410450e265b82ac36ad1cbbfd5f3ca9a204.tar.gz |
Merge tag 'drm/tegra/for-3.15-rc3' of git://anongit.freedesktop.org/tegra/linux into drm-next
drm/tegra: Fixes for v3.15-rc3
A single fix for some framebuffer reference counting fallout caused by
the primary plane helpers introduced in 3.15-rc1.
* tag 'drm/tegra/for-3.15-rc3' of git://anongit.freedesktop.org/tegra/linux:
drm/tegra: restrict plane loops to legacy planes
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/tegra/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c index 36c717a..edb871d 100644 --- a/drivers/gpu/drm/tegra/dc.c +++ b/drivers/gpu/drm/tegra/dc.c @@ -312,7 +312,7 @@ static void tegra_crtc_disable(struct drm_crtc *crtc) struct drm_device *drm = crtc->dev; struct drm_plane *plane; - list_for_each_entry(plane, &drm->mode_config.plane_list, head) { + drm_for_each_legacy_plane(plane, &drm->mode_config.plane_list) { if (plane->crtc == crtc) { tegra_plane_disable(plane); plane->crtc = NULL; |