Cast a bus address to a uintmax_t for a debug printf to fix the build on

arm.
This commit is contained in:
John Baldwin 2012-07-11 15:04:20 +00:00
parent ba59181d1c
commit f5afad7389
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238365

View File

@ -191,11 +191,11 @@ ath_edma_reinit_fifo(struct ath_softc *sc, HAL_RX_QUEUE qtype)
for (j = 0; j < re->m_fifo_depth; j++) {
bf = re->m_fifo[i];
DPRINTF(sc, ATH_DEBUG_EDMA_RX,
"%s: Q%d: pos=%i, addr=0x%x\n",
"%s: Q%d: pos=%i, addr=0x%jx\n",
__func__,
qtype,
i,
bf->bf_daddr);
(uintmax_t)bf->bf_daddr);
ath_hal_putrxbuf(sc->sc_ah, bf->bf_daddr, qtype);
INCR(i, re->m_fifolen);
}