summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-04-16 01:58:13 +0000
committerjhb <jhb@FreeBSD.org>2002-04-16 01:58:13 +0000
commite34af244a95994423fa0a692e0d44414d75d47f0 (patch)
tree1353ac92ac160095a9dc95f700be9414156ec4e1 /sys/dev
parent0517513584595c866f22acdb78ee425cb00c465c (diff)
downloadFreeBSD-src-e34af244a95994423fa0a692e0d44414d75d47f0.zip
FreeBSD-src-e34af244a95994423fa0a692e0d44414d75d47f0.tar.gz
Cast another bus_addr_t to long long for a printf to quiet a warning on
alpha.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sound/pci/maestro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/maestro.c b/sys/dev/sound/pci/maestro.c
index f1e1d8b..8b1343f 100644
--- a/sys/dev/sound/pci/maestro.c
+++ b/sys/dev/sound/pci/maestro.c
@@ -983,7 +983,8 @@ agg_attach(device_t dev)
goto bad;
}
if (bootverbose)
- device_printf(dev, "Maestro DMA base: %#x\n", ess->baseaddr);
+ device_printf(dev, "Maestro DMA base: %#llx\n",
+ (long long)ess->baseaddr);
agg_power(ess, PPMI_D0);
DELAY(100000);
OpenPOWER on IntegriCloud