Author: gonzo
Date: Fri Jan 25 21:38:28 2019
New Revision: 343458
URL: https://svnweb.freebsd.org/changeset/base/343458

Log:
  Fix format/arg mismatch
  
  USe correct format for int arguments
  
  PR:           229549
  Submitted by: David Binderman <dcb...@hotmail.com>
  MFC after:    1 week

Modified:
  head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c

Modified: head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c
==============================================================================
--- head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c Fri Jan 25 21:24:09 2019        
(r343457)
+++ head/sys/dev/bhnd/cores/pmu/bhnd_pmu_subr.c Fri Jan 25 21:38:28 2019        
(r343458)
@@ -1036,7 +1036,7 @@ bhnd_pmu_res_init(struct bhnd_pmu_softc *sc)
                        return (error);
                }
 
-               PMU_DEBUG(sc, "Applying %s=%s to rsrc %d res_updn_timer\n",
+               PMU_DEBUG(sc, "Applying %s=%d to rsrc %d res_updn_timer\n",
                    name, val, i);
 
                BHND_PMU_WRITE_4(sc, BHND_PMU_RES_TABLE_SEL, i);
@@ -1111,7 +1111,7 @@ bhnd_pmu_res_init(struct bhnd_pmu_softc *sc)
                        return (error);
                }
 
-               PMU_DEBUG(sc, "Applying %s=%s to rsrc %d res_dep_mask\n", name,
+               PMU_DEBUG(sc, "Applying %s=%d to rsrc %d res_dep_mask\n", name,
                    val, i);
 
                BHND_PMU_WRITE_4(sc, BHND_PMU_RES_TABLE_SEL, i);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to