aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2021-08-11 13:58:18 -0700
committerSimon Ser <contact@emersion.fr>2021-08-12 16:50:04 +0200
commit96275df87a07aa5f5f3fec8ab239af3ea5fdf325 (patch)
tree8a966c16f43b0142ce91aacd4c537bceeac58a96
parentdrm/virtio: set non-cross device blob uuid_state (diff)
downloadlinux-dev-96275df87a07aa5f5f3fec8ab239af3ea5fdf325.tar.xz
linux-dev-96275df87a07aa5f5f3fec8ab239af3ea5fdf325.zip
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 <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
-rw-r--r--include/drm/drm_edid.h2
1 files changed, 1 insertions, 1 deletions
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;