diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2007-04-12 15:12:00 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2007-04-12 15:12:00 +0100 |
commit | cf016891435a0aa74dc4909ed4125c7ed906b7d1 (patch) | |
tree | c5f61c49e444736778beb0aeae6a9cbbd2873979 | |
parent | a85440c8a6cac3de4b0e50805fa30cdce40e311b (diff) |
Use drm_framebuffer instead of drm_crtc for fb & fbt
-rw-r--r-- | linux-core/drm_crtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_crtc.c b/linux-core/drm_crtc.c index 2f140dbd..ef025922 100644 --- a/linux-core/drm_crtc.c +++ b/linux-core/drm_crtc.c @@ -582,7 +582,7 @@ void drm_mode_config_cleanup(drm_device_t *dev) { struct drm_output *output, *ot; struct drm_crtc *crtc, *ct; - struct drm_crtc *fb, *fbt; + struct drm_framebuffer *fb, *fbt; list_for_each_entry_safe(output, ot, &dev->mode_config.output_list, head) { drm_output_destroy(output); } |