Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2/dist/drm More const.



details:   https://anonhg.NetBSD.org/src/rev/037088dc61cd
branches:  trunk
changeset: 1027866:037088dc61cd
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Dec 19 00:59:53 2021 +0000

description:
More const.

diffstat:

 sys/external/bsd/drm2/dist/drm/drm_edid.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 27b5a27d723c -r 037088dc61cd sys/external/bsd/drm2/dist/drm/drm_edid.c
--- a/sys/external/bsd/drm2/dist/drm/drm_edid.c Sun Dec 19 00:59:42 2021 +0000
+++ b/sys/external/bsd/drm2/dist/drm/drm_edid.c Sun Dec 19 00:59:53 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: drm_edid.c,v 1.11 2021/12/19 00:59:42 riastradh Exp $  */
+/*     $NetBSD: drm_edid.c,v 1.12 2021/12/19 00:59:53 riastradh Exp $  */
 
 /*
  * Copyright (c) 2006 Luc Verhaegen (quirks list)
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_edid.c,v 1.11 2021/12/19 00:59:42 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_edid.c,v 1.12 2021/12/19 00:59:53 riastradh Exp $");
 
 #include <linux/hdmi.h>
 #include <linux/i2c.h>
@@ -3165,7 +3165,7 @@
  */
 static u8 *drm_find_edid_extension(const struct edid *edid, int ext_id)
 {
-       u8 *edid_ext = NULL;
+       const u8 *edid_ext = NULL;
        int i;
 
        /* No EDID or EDID extensions */



Home | Main Index | Thread Index | Old Index