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/i915 PRIx64 for u64
details: https://anonhg.NetBSD.org/src/rev/dc0917d0fc71
branches: trunk
changeset: 1028539:dc0917d0fc71
user: riastradh <riastradh%NetBSD.org@localhost>
date: Sun Dec 19 11:16:48 2021 +0000
description:
PRIx64 for u64
Author: Maya Rashish <maya%NetBSD.org@localhost>
Committer: Taylor R Campbell <riastradh%NetBSD.org@localhost>
diffstat:
sys/external/bsd/drm2/dist/drm/i915/i915_cmd_parser.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 724882e0d0f6 -r dc0917d0fc71 sys/external/bsd/drm2/dist/drm/i915/i915_cmd_parser.c
--- a/sys/external/bsd/drm2/dist/drm/i915/i915_cmd_parser.c Sun Dec 19 11:16:39 2021 +0000
+++ b/sys/external/bsd/drm2/dist/drm/i915/i915_cmd_parser.c Sun Dec 19 11:16:48 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: i915_cmd_parser.c,v 1.25 2021/12/19 11:16:39 riastradh Exp $ */
+/* $NetBSD: i915_cmd_parser.c,v 1.26 2021/12/19 11:16:48 riastradh Exp $ */
/*
* Copyright © 2013 Intel Corporation
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i915_cmd_parser.c,v 1.25 2021/12/19 11:16:39 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i915_cmd_parser.c,v 1.26 2021/12/19 11:16:48 riastradh Exp $");
#include "gt/intel_engine.h"
@@ -1338,7 +1338,7 @@
* of a u32, so >= test catches both too large and too small
*/
if (jump_offset >= batch_length) {
- DRM_DEBUG("CMD: BB_START to 0x%llx jumps out of BB\n",
+ DRM_DEBUG("CMD: BB_START to 0x%"PRIx64" jumps out of BB\n",
jump_target);
return -EINVAL;
}
@@ -1359,7 +1359,7 @@
return PTR_ERR(jump_whitelist);
if (!test_bit(target_cmd_index, jump_whitelist)) {
- DRM_DEBUG("CMD: BB_START to 0x%llx not a previously executed cmd\n",
+ DRM_DEBUG("CMD: BB_START to 0x%"PRIx64" not a previously executed cmd\n",
jump_target);
return -EINVAL;
}
Home |
Main Index |
Thread Index |
Old Index