diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-08 21:17:02 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-08 21:17:02 +0000 |
commit | 27db5d8a65b8f6c6fb8f9e033dd5f2c49aff24ec (patch) | |
tree | 56404a9ea93a805af8ba830dda9f4910fb2bfb15 /sys/arch/armv7/omap | |
parent | 455da5aee242b188a5c369d8eed122ca7d794a99 (diff) |
Format string fixes and removal of -Wno-format for arm kernels.
Diffstat (limited to 'sys/arch/armv7/omap')
-rw-r--r-- | sys/arch/armv7/omap/dmtimer.c | 2 | ||||
-rw-r--r-- | sys/arch/armv7/omap/gptimer.c | 4 | ||||
-rw-r--r-- | sys/arch/armv7/omap/prcm.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/armv7/omap/dmtimer.c b/sys/arch/armv7/omap/dmtimer.c index e7dd984e335..b8fbe794854 100644 --- a/sys/arch/armv7/omap/dmtimer.c +++ b/sys/arch/armv7/omap/dmtimer.c @@ -194,7 +194,7 @@ dmtimer_attach(struct device *parent, struct device *self, void *args) dmtimer_setstatclockrate, NULL); } else - panic("attaching too many dmtimers at 0x%x", + panic("attaching too many dmtimers at 0x%lx", aa->aa_dev->mem[0].addr); /* set IDLEMODE to smart-idle */ diff --git a/sys/arch/armv7/omap/gptimer.c b/sys/arch/armv7/omap/gptimer.c index 59874c0ffc7..a750cf51c5f 100644 --- a/sys/arch/armv7/omap/gptimer.c +++ b/sys/arch/armv7/omap/gptimer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gptimer.c,v 1.2 2013/11/06 19:03:07 syl Exp $ */ +/* $OpenBSD: gptimer.c,v 1.3 2014/05/08 21:17:01 miod Exp $ */ /* * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org> * @@ -171,7 +171,7 @@ gptimer_attach(struct device *parent, struct device *self, void *args) tc_init(&gptimer_timecounter); } else - panic("attaching too many gptimers at 0x%x", + panic("attaching too many gptimers at 0x%lx", aa->aa_dev->mem[0].addr); arm_clock_register(gptimer_cpu_initclocks, gptimer_delay, diff --git a/sys/arch/armv7/omap/prcm.c b/sys/arch/armv7/omap/prcm.c index f6ca5407005..52b39c4c71c 100644 --- a/sys/arch/armv7/omap/prcm.c +++ b/sys/arch/armv7/omap/prcm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: prcm.c,v 1.8 2014/03/18 07:34:17 syl Exp $ */ +/* $OpenBSD: prcm.c,v 1.9 2014/05/08 21:17:01 miod Exp $ */ /* * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org> * @@ -443,7 +443,7 @@ prcm_v4_hsusbhost_activate(int type) break; default: - panic("%s: invalid type %d", type); + panic("%s: invalid type %d", __func__, type); return (EINVAL); } bus_space_write_4(sc->sc_iot, sc->sc_cm2, clksel_reg_off, clksel); |