浏览代码

drm: fix useless gcc unused variable warning

the calling function doesn't call this function unless one of the two
states that sets the value is true.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Dave Airlie 16 年之前
父节点
当前提交
f890607b1e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/gpu/drm/drm_edid.c

+ 1 - 1
drivers/gpu/drm/drm_edid.c

@@ -205,7 +205,7 @@ static void edid_fixup_preferred(struct drm_connector *connector,
 				 u32 quirks)
 {
 	struct drm_display_mode *t, *cur_mode, *preferred_mode;
-	int target_refresh;
+	int target_refresh = 0;
 
 	if (list_empty(&connector->probed_modes))
 		return;