diff mbox series

drm/edid: fix edid field name

Message ID 20210811205818.156100-1-lucas.demarchi@intel.com (mailing list archive)
State New, archived
Headers show
Series drm/edid: fix edid field name | expand

Commit Message

Lucas De Marchi Aug. 11, 2021, 8:58 p.m. UTC
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(-)

Comments

Simon Ser Aug. 11, 2021, 9:32 p.m. UTC | #1
Reviewed-by: Simon Ser <contact@emersion.fr>

Do you need me to push this?
Lucas De Marchi Aug. 11, 2021, 11:32 p.m. UTC | #2
On Wed, Aug 11, 2021 at 09:32:49PM +0000, Simon Ser wrote:
>Reviewed-by: Simon Ser <contact@emersion.fr>
>
>Do you need me to push this?

yes, please. I'm a committer only on drm-intel and I guess this should
go through another tree.

thanks
Lucas De Marchi
Simon Ser Aug. 12, 2021, 2:51 p.m. UTC | #3
Pushed to drm-misc-next, thanks!
diff mbox series

Patch

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;