Fix a typo in the name of the dmamap for a bus_dmamap_sync().

MFC after:	3 days
This commit is contained in:
John Baldwin 2005-07-27 13:48:45 +00:00
parent 4ed854e8d4
commit 8bc92074e8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148444

View file

@ -1345,7 +1345,7 @@ sis_ring_init(struct sis_softc *sc)
sc->sis_tx_prod = sc->sis_tx_cons = sc->sis_tx_cnt = 0;
bus_dmamap_sync(sc->sis_tx_tag,
sc->sis_rx_dmamap, BUS_DMASYNC_PREWRITE);
sc->sis_tx_dmamap, BUS_DMASYNC_PREWRITE);
dp = &sc->sis_rx_list[0];
for (i = 0; i < SIS_RX_LIST_CNT; i++, dp++) {