mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Cast another bus_addr_t to long long for a printf to quiet a warning on
alpha.
This commit is contained in:
parent
99b8d33f34
commit
0654f06291
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue