summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authormatt <matt@NetBSD.org>2015-05-24 17:19:29 +0000
committermatt <matt@NetBSD.org>2015-05-24 17:19:29 +0000
commit3bce0e372f8fc0bfb60d99ebf29ebbdc6e933fa8 (patch)
treeb507f0ab2331032c9a10867c97aa97910cb6a7ef /sys/dev/ic
parent661db735ba874b8a7372d0c0b899fb652c0778bb (diff)
remove errant &
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/arn5008.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/arn5008.c b/sys/dev/ic/arn5008.c
index 7eb21cb5827..e9f5d32d543 100644
--- a/sys/dev/ic/arn5008.c
+++ b/sys/dev/ic/arn5008.c
@@ -1,4 +1,4 @@
-/* $NetBSD: arn5008.c,v 1.7 2015/05/24 17:08:50 matt Exp $ */
+/* $NetBSD: arn5008.c,v 1.8 2015/05/24 17:19:29 matt Exp $ */
/* $OpenBSD: ar5008.c,v 1.21 2012/08/25 12:14:31 kettenis Exp $ */
/*-
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: arn5008.c,v 1.7 2015/05/24 17:08:50 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arn5008.c,v 1.8 2015/05/24 17:19:29 matt Exp $");
#include <sys/param.h>
#include <sys/sockio.h>
@@ -606,7 +606,7 @@ ar5008_rx_alloc(struct athn_softc *sc)
if (error != 0)
goto fail;
- error = bus_dmamap_load(sc->sc_dmat, rxq->map, &rxq->descs,
+ error = bus_dmamap_load(sc->sc_dmat, rxq->map, rxq->descs,
size, NULL, BUS_DMA_NOWAIT);
if (error != 0)
goto fail;