From 3205164ec53d7586586c62f2949ca234aa566976 Mon Sep 17 00:00:00 2001 From: augustss Date: Mon, 17 Jan 2000 13:23:05 +0000 Subject: [PATCH] Add missing USBD_NO_COPY flag. --- sys/dev/usb/if_aue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index f2a494906853..dc7f042b9d68 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_aue.c,v 1.11 2000/01/17 02:20:43 augustss Exp $ */ +/* $NetBSD: if_aue.c,v 1.12 2000/01/17 13:23:05 augustss Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 * Bill Paul . All rights reserved. @@ -1182,7 +1182,7 @@ aue_rxeof(xfer, priv, status) c->aue_accum = AUE_CUTOFF; usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX], c, c->aue_buf, - AUE_CUTOFF, USBD_SHORT_XFER_OK, + AUE_CUTOFF, USBD_SHORT_XFER_OK | USBD_NO_COPY, USBD_NO_TIMEOUT, aue_rxeof); DPRINTFN(5,("%s: %s: extra rx\n", USBDEVNAME(sc->aue_dev), __FUNCTION__));