]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: Use drm_for_each_fb in i915_debugfs.c
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 10 Jul 2015 17:02:51 +0000 (19:02 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 22 Jul 2015 14:25:46 +0000 (16:25 +0200)
Just so I have a user for this macro.

v2: Use the right macro - somehow I thought gcc should scream at me,
but list_for_each isn't really typesafe unfortunately. Spotted by
Ville.

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
drivers/gpu/drm/i915/i915_debugfs.c

index bc817da9fef7a05c37c2f67b50c52b21725b3663..51580bdd587fd8e6e3ef3f4820682924bdc35003 100644 (file)
@@ -1866,6 +1866,7 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
        struct drm_device *dev = node->minor->dev;
        struct intel_fbdev *ifbdev = NULL;
        struct intel_framebuffer *fb;
+       struct drm_framebuffer *drm_fb;
 
 #ifdef CONFIG_DRM_I915_FBDEV
        struct drm_i915_private *dev_priv = dev->dev_private;
@@ -1885,7 +1886,8 @@ static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
 #endif
 
        mutex_lock(&dev->mode_config.fb_lock);
-       list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
+       drm_for_each_fb(drm_fb, dev) {
+               fb = to_intel_framebuffer(drm_fb);
                if (ifbdev && &fb->base == ifbdev->helper.fb)
                        continue;