On Mon, Aug 19, 2013 at 04:58:54PM +0100, Damien Lespiau wrote: [...] > diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c [...] > +static int > +do_hdmi_vsdb_modes(struct drm_connector *connector, const u8 *db, u8 len) > +{ [...] > + u8 vic; > + > + vic = db[9 + offset + i]; > + > + vic--; /* VICs start at 1 */ This could've all gone on a single line, perhaps with the comment on top, like so: /* VICs start at 1 */ u8 vic = db[9 + offset + i] - 1; Thierry
Attachment:
pgpprDy2BqJun.pgp
Description: PGP signature
_______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/intel-gfx