Module Name:    src
Committed By:   riastradh
Date:           Sat Jul  9 15:24:42 UTC 2022

Modified Files:
        src/sys/external/bsd/drm2/include/linux: hdmi.h

Log Message:
linux/hdmi.h: Fix spd infoframe header version.

Possibly relevant to PR kern/56740.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/external/bsd/drm2/include/linux/hdmi.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/bsd/drm2/include/linux/hdmi.h
diff -u src/sys/external/bsd/drm2/include/linux/hdmi.h:1.14 src/sys/external/bsd/drm2/include/linux/hdmi.h:1.15
--- src/sys/external/bsd/drm2/include/linux/hdmi.h:1.14	Sun Dec 19 11:45:35 2021
+++ src/sys/external/bsd/drm2/include/linux/hdmi.h	Sat Jul  9 15:24:42 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: hdmi.h,v 1.14 2021/12/19 11:45:35 riastradh Exp $	*/
+/*	$NetBSD: hdmi.h,v 1.15 2022/07/09 15:24:42 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -718,7 +718,7 @@ hdmi_spd_infoframe_check(const struct hd
 	int ret;
 
 	ret = hdmi_infoframe_header_check(&frame->header,
-	    HDMI_INFOFRAME_TYPE_SPD, 2, HDMI_SPD_INFOFRAME_SIZE);
+	    HDMI_INFOFRAME_TYPE_SPD, 1, HDMI_SPD_INFOFRAME_SIZE);
 	if (ret)
 		return ret;
 

Reply via email to