Skip to content

Commit

Permalink
drm/kms: silencing a false positive warning.
Browse files Browse the repository at this point in the history
warning: 'width' may be used uninitialized in this function
drivers/gpu/drm/drm_edid.c

Signed-off-by: Marin Mitov <mitov@issp.bas.bg>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Marin Mitov authored and Dave Airlie committed Dec 23, 2009
1 parent e2108eb commit 29ebdf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/drm_edid.c
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ static int drm_cvt_modes(struct drm_connector *connector,
const int rates[] = { 60, 85, 75, 60, 50 };

for (i = 0; i < 4; i++) {
int width, height;
int uninitialized_var(width), height;
cvt = &(timing->data.other_data.data.cvt[i]);

height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 8) + 1) * 2;
Expand Down

0 comments on commit 29ebdf9

Please sign in to comment.