Skip to content

Commit 96275df

Browse files
lucasdemarchiemersion
authored andcommitted
drm/edid: fix edid field name
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 <[email protected]> Reviewed-by: Simon Ser <[email protected]> Signed-off-by: Simon Ser <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 3c383a3 commit 96275df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/drm/drm_edid.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ struct edid {
336336
u8 features;
337337
/* Color characteristics */
338338
u8 red_green_lo;
339-
u8 black_white_lo;
339+
u8 blue_white_lo;
340340
u8 red_x;
341341
u8 red_y;
342342
u8 green_x;

0 commit comments

Comments
 (0)