diff options
author | Dave Airlie <airlied@linux.ie> | 2007-05-01 13:15:41 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-05-01 13:15:41 +1000 |
commit | 8e8e37515eafbd75b971f57f767ef01344361256 (patch) | |
tree | bd4f91b4f652dafd0626fb9763f4819ea7484ea2 | |
parent | b589b846e73bfe6235cd702bb8ae89701c85eaab (diff) |
fix unusued variable
-rw-r--r-- | linux-core/drm_modes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_modes.c b/linux-core/drm_modes.c index 3293f91d..97f7607d 100644 --- a/linux-core/drm_modes.c +++ b/linux-core/drm_modes.c @@ -533,7 +533,7 @@ void drm_mode_sort(struct list_head *mode_list) */ void drm_mode_output_list_update(struct drm_output *output) { - struct drm_display_mode *mode, *t; + struct drm_display_mode *mode; struct drm_display_mode *pmode, *pt; int found_it; list_for_each_entry_safe(pmode, pt, &output->probed_modes, |