mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix armv{6,7} build after r364088
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
6d56f524a7
commit
fc254a2e4a
1 changed files with 2 additions and 1 deletions
|
|
@ -1220,7 +1220,8 @@ dwc_clock_init(device_t dev)
|
|||
}
|
||||
if (bootverbose) {
|
||||
clk_get_freq(clk, &freq);
|
||||
device_printf(dev, "MAC clock(%s) freq: %ld\n", clk_get_name(clk), freq);
|
||||
device_printf(dev, "MAC clock(%s) freq: %jd\n",
|
||||
clk_get_name(clk), (intmax_t)freq);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue