aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2016-01-01 15:17:24 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2016-01-01 15:17:24 +0000
commit38f004fbb0f684e25399b3428b870cf006eb9cae (patch)
tree29f09bc3189aaafdffa324d748ef02ed0c6fe1ea /sys/dev
parent9a7ee988b5edae5016b12c1505d997a4afa0eefa (diff)
downloadsrc-38f004fbb0f684e25399b3428b870cf006eb9cae.tar.gz
src-38f004fbb0f684e25399b3428b870cf006eb9cae.zip
Fix a couple printf formats.
This was found when working on 64-bit PowerPC book-e support.
Notes
Notes: svn path=/head/; revision=293039
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sec/sec.c3
-rw-r--r--sys/dev/tsec/if_tsec.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/sec/sec.c b/sys/dev/sec/sec.c
index 3b99a3e326a0..5ef000f78177 100644
--- a/sys/dev/sec/sec.c
+++ b/sys/dev/sec/sec.c
@@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$");
#include <sys/random.h>
#include <sys/rman.h>
+#include <machine/_inttypes.h>
#include <machine/bus.h>
#include <machine/resource.h>
@@ -235,7 +236,7 @@ sec_probe(device_t dev)
sc->sc_version = 3;
break;
default:
- device_printf(dev, "unknown SEC ID 0x%016llx!\n", id);
+ device_printf(dev, "unknown SEC ID 0x%16"PRIx64"!\n", id);
return (ENXIO);
}
diff --git a/sys/dev/tsec/if_tsec.c b/sys/dev/tsec/if_tsec.c
index 7ec2f986ef65..3fd872659f50 100644
--- a/sys/dev/tsec/if_tsec.c
+++ b/sys/dev/tsec/if_tsec.c
@@ -561,7 +561,7 @@ tsec_set_mac_address(struct tsec_softc *sc)
TSEC_GLOBAL_LOCK_ASSERT(sc);
KASSERT((ETHER_ADDR_LEN <= sizeof(macbuf)),
- ("tsec_set_mac_address: (%d <= %d", ETHER_ADDR_LEN,
+ ("tsec_set_mac_address: (%d <= %zd", ETHER_ADDR_LEN,
sizeof(macbuf)));
macbufp = (char *)macbuf;