Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic remove errant &
details: https://anonhg.NetBSD.org/src/rev/e44f30e27114
branches: trunk
changeset: 338437:e44f30e27114
user: matt <matt%NetBSD.org@localhost>
date: Sun May 24 17:19:29 2015 +0000
description:
remove errant &
diffstat:
sys/dev/ic/arn5008.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 47c0efc3ca00 -r e44f30e27114 sys/dev/ic/arn5008.c
--- a/sys/dev/ic/arn5008.c Sun May 24 17:11:18 2015 +0000
+++ b/sys/dev/ic/arn5008.c Sun May 24 17:19:29 2015 +0000
@@ -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 @@
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;
Home |
Main Index |
Thread Index |
Old Index