svn commit: r364098 - head/sys/dev/dwc

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Aug 11 05:17:11 UTC 2020


Author: lwhsu
Date: Tue Aug 11 05:17:10 2020
New Revision: 364098
URL: https://svnweb.freebsd.org/changeset/base/364098

Log:
  Fix armv{6,7} build after r364088
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/dev/dwc/if_dwc.c

Modified: head/sys/dev/dwc/if_dwc.c
==============================================================================
--- head/sys/dev/dwc/if_dwc.c	Tue Aug 11 05:10:01 2020	(r364097)
+++ head/sys/dev/dwc/if_dwc.c	Tue Aug 11 05:17:10 2020	(r364098)
@@ -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 {


More information about the svn-src-head mailing list