summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/if_ral.c4
-rw-r--r--sys/dev/usb/if_rum.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/usb/if_ral.c b/sys/dev/usb/if_ral.c
index f89e4952a6a..ca6ac137957 100644
--- a/sys/dev/usb/if_ral.c
+++ b/sys/dev/usb/if_ral.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ral.c,v 1.76 2006/08/23 08:06:49 jsg Exp $ */
+/* $OpenBSD: if_ral.c,v 1.77 2006/08/23 16:25:07 damien Exp $ */
/*-
* Copyright (c) 2005, 2006
@@ -450,7 +450,7 @@ ural_alloc_tx_list(struct ural_softc *sc)
}
data->buf = usbd_alloc_buffer(data->xfer,
- RAL_TX_DESC_SIZE + MCLBYTES);
+ RAL_TX_DESC_SIZE + IEEE80211_MTU_MAX);
if (data->buf == NULL) {
printf("%s: could not allocate tx buffer\n",
USBDEVNAME(sc->sc_dev));
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c
index 9c26d0d5fdd..2983e1be1b3 100644
--- a/sys/dev/usb/if_rum.c
+++ b/sys/dev/usb/if_rum.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_rum.c,v 1.36 2006/08/23 16:16:39 damien Exp $ */
+/* $OpenBSD: if_rum.c,v 1.37 2006/08/23 16:25:07 damien Exp $ */
/*-
* Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr>
@@ -489,7 +489,7 @@ rum_alloc_tx_list(struct rum_softc *sc)
}
data->buf = usbd_alloc_buffer(data->xfer,
- RT2573_TX_DESC_SIZE + MCLBYTES);
+ RT2573_TX_DESC_SIZE + IEEE80211_MTU_MAX);
if (data->buf == NULL) {
printf("%s: could not allocate tx buffer\n",
USBDEVNAME(sc->sc_dev));