summaryrefslogtreecommitdiffstats
path: root/sys/dev/ida/ida.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ida/ida.c')
-rw-r--r--sys/dev/ida/ida.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ida/ida.c b/sys/dev/ida/ida.c
index a60c516..39369ea 100644
--- a/sys/dev/ida/ida.c
+++ b/sys/dev/ida/ida.c
@@ -40,6 +40,7 @@
#include <sys/param.h>
#include <sys/kernel.h>
+#include <sys/stdint.h>
#include <sys/systm.h>
#include <sys/malloc.h>
@@ -480,7 +481,7 @@ ida_intr(void *data)
if (qcb == NULL || qcb->state != QCB_ACTIVE) {
device_printf(ida->dev,
- "ignoring completion %llx\n", (long long)completed);
+ "ignoring completion %jx\n", (intmax_t)completed);
continue;
}
ida_done(ida, qcb);
OpenPOWER on IntegriCloud