Skip to content

Commit

Permalink
drm/edid: fix edid field name
Browse files Browse the repository at this point in the history
Byte 26 in a edid struct is supposed to be "Blue and white
least-significant 2 bits", not "black and white". Rename the field
accordingly. This field is not used anywhere, so just renaming it here
for correctness.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Signed-off-by: Simon Ser <contact@emersion.fr>
Link: https://patchwork.freedesktop.org/patch/msgid/20210811205818.156100-1-lucas.demarchi@intel.com
  • Loading branch information
Lucas De Marchi authored and Simon Ser committed Aug 12, 2021
1 parent 3c383a3 commit 96275df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/drm/drm_edid.h
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ struct edid {
u8 features;
/* Color characteristics */
u8 red_green_lo;
u8 black_white_lo;
u8 blue_white_lo;
u8 red_x;
u8 red_y;
u8 green_x;
Expand Down

0 comments on commit 96275df

Please sign in to comment.