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 PRIu64



details:   https://anonhg.NetBSD.org/src/rev/fbaee96c8a68
branches:  trunk
changeset: 1028192:fbaee96c8a68
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Dec 19 09:47:44 2021 +0000

description:
PRIu64


Author: Maya Rashish <maya%NetBSD.org@localhost>

diffstat:

 sys/external/bsd/drm2/dist/drm/drm_framebuffer.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r 09f4f76d5ba9 -r fbaee96c8a68 sys/external/bsd/drm2/dist/drm/drm_framebuffer.c
--- a/sys/external/bsd/drm2/dist/drm/drm_framebuffer.c  Sun Dec 19 09:47:35 2021 +0000
+++ b/sys/external/bsd/drm2/dist/drm/drm_framebuffer.c  Sun Dec 19 09:47:44 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: drm_framebuffer.c,v 1.5 2021/12/19 09:47:35 riastradh Exp $    */
+/*     $NetBSD: drm_framebuffer.c,v 1.6 2021/12/19 09:47:44 riastradh Exp $    */
 
 /*
  * Copyright (c) 2016 Intel Corporation
@@ -23,7 +23,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_framebuffer.c,v 1.5 2021/12/19 09:47:35 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_framebuffer.c,v 1.6 2021/12/19 09:47:44 riastradh Exp $");
 
 #include <linux/export.h>
 #include <linux/capability.h>
@@ -232,14 +232,14 @@
                }
 
                if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
-                       DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
+                       DRM_DEBUG_KMS("bad fb modifier %"PRIu64" for plane %d\n",
                                      r->modifier[i], i);
                        return -EINVAL;
                }
 
                if (r->flags & DRM_MODE_FB_MODIFIERS &&
                    r->modifier[i] != r->modifier[0]) {
-                       DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
+                       DRM_DEBUG_KMS("bad fb modifier %"PRIu64" for plane %d\n",
                                      r->modifier[i], i);
                        return -EINVAL;
                }



Home | Main Index | Thread Index | Old Index