aboutsummaryrefslogtreecommitdiff
path: root/sys/mips/rt305x
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2016-03-22 22:25:08 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2016-03-22 22:25:08 +0000
commitf8fd3fb51851136d6e74578405d3ba9b01f223b9 (patch)
tree9b8b9c07cba5a35065331164201f6fc57579a8dc /sys/mips/rt305x
parent0d66701783514df58843f8d511a61e9d95d3821b (diff)
downloadsrc-f8fd3fb51851136d6e74578405d3ba9b01f223b9.tar.gz
src-f8fd3fb51851136d6e74578405d3ba9b01f223b9.zip
Fix the resource_list_print_type() calls to use uintmax_t.
Missed a bunch from r297000.
Notes
Notes: svn path=/head/; revision=297199
Diffstat (limited to 'sys/mips/rt305x')
-rw-r--r--sys/mips/rt305x/obio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/mips/rt305x/obio.c b/sys/mips/rt305x/obio.c
index ff7ba037dbe9..ac2723060fac 100644
--- a/sys/mips/rt305x/obio.c
+++ b/sys/mips/rt305x/obio.c
@@ -587,8 +587,8 @@ obio_print_all_resources(device_t dev)
if (STAILQ_FIRST(rl))
retval += printf(" at");
- retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#lx");
- retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
+ retval += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
+ retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
return (retval);
}