All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/edid: fix edid field name
@ 2021-08-11 20:58 Lucas De Marchi
  2021-08-11 21:32 ` Simon Ser
  0 siblings, 1 reply; 4+ messages in thread
From: Lucas De Marchi @ 2021-08-11 20:58 UTC (permalink / raw)
  To: dri-devel; +Cc: airlied, Simon Ser

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>
---
 include/drm/drm_edid.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h
index 759328a5eeb2..deccfd39e6db 100644
--- a/include/drm/drm_edid.h
+++ b/include/drm/drm_edid.h
@@ -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;
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-08-12 14:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-11 20:58 [PATCH] drm/edid: fix edid field name Lucas De Marchi
2021-08-11 21:32 ` Simon Ser
2021-08-11 23:32   ` Lucas De Marchi
2021-08-12 14:51     ` Simon Ser

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.