summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrnoland <rnoland@FreeBSD.org>2009-03-09 07:50:27 +0000
committerrnoland <rnoland@FreeBSD.org>2009-03-09 07:50:27 +0000
commit7d9d797109b2cf2136f939594054bf4c04475391 (patch)
tree9a3bfef012727ec4b3c3129158180c9d10b5cbcf
parent684aefd7885d70a061280ae408e462f419ac076a (diff)
downloadFreeBSD-src-7d9d797109b2cf2136f939594054bf4c04475391.zip
FreeBSD-src-7d9d797109b2cf2136f939594054bf4c04475391.tar.gz
Clean up the printing on amd64. Should also be consistent on i386.
MFC after: 3 days
-rw-r--r--sys/dev/drm/drm_sysctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/drm/drm_sysctl.c b/sys/dev/drm/drm_sysctl.c
index 634bff8..afe8888 100644
--- a/sys/dev/drm/drm_sysctl.c
+++ b/sys/dev/drm/drm_sysctl.c
@@ -185,8 +185,8 @@ static int drm_vm_info DRM_SYSCTL_HANDLER_ARGS
DRM_UNLOCK();
- DRM_SYSCTL_PRINT("\nslot offset size type flags "
- "address mtrr\n");
+ DRM_SYSCTL_PRINT("\nslot offset size "
+ "type flags address mtrr\n");
for (i = 0; i < mapcount; i++) {
map = &tempmaps[i];
@@ -202,7 +202,7 @@ static int drm_vm_info DRM_SYSCTL_HANDLER_ARGS
yesno = "yes";
DRM_SYSCTL_PRINT(
- "%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08lx %s\n", i,
+ "%4d 0x%016lx 0x%08lx %4.4s 0x%02x 0x%016lx %s\n", i,
map->offset, map->size, type, map->flags,
(unsigned long)map->handle, yesno);
}
OpenPOWER on IntegriCloud