diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2011-10-19 07:49:56 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2011-10-19 07:49:56 +0000 |
commit | ee14e3fa74154285db6607c386c59ec6784bcfa2 (patch) | |
tree | 730818f6c37a5764c76ab79a63292fdab123cf1a /sys/dev | |
parent | d29b27709ede8e1f12607e6f998c4e6d6a681a50 (diff) |
Typo; from Brad
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_ale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ale.c b/sys/dev/pci/if_ale.c index 752dcefa5ed..1ede50cb6e8 100644 --- a/sys/dev/pci/if_ale.c +++ b/sys/dev/pci/if_ale.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ale.c,v 1.22 2011/10/19 05:23:44 kevlo Exp $ */ +/* $OpenBSD: if_ale.c,v 1.23 2011/10/19 07:49:55 kevlo Exp $ */ /*- * Copyright (c) 2008, Pyun YongHyeon <yongari@FreeBSD.org> * All rights reserved. @@ -1481,7 +1481,7 @@ ale_rxeof(struct ale_softc *sc) BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); bus_dmamap_sync(sc->sc_dmat, rx_page->page_map, 0, rx_page->page_map->dm_mapsize, - BUS_DMASYNC_POSTREAD) | BUS_DMASYNC_POSTWRITE; + BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); /* * Don't directly access producer index as hardware may * update it while Rx handler is in progress. It would |