diff options
| author | kiyohara <kiyohara@NetBSD.org> | 2007-08-15 16:58:54 +0000 |
|---|---|---|
| committer | kiyohara <kiyohara@NetBSD.org> | 2007-08-15 16:58:54 +0000 |
| commit | 66161689a5b4e9b66460e9e5d8c4eed6b8ce052d (patch) | |
| tree | 45db2e99db692f5e7c849985f8fdf6023eb9e356 /sys/dev/usb/if_rum.c | |
| parent | ba8f4f0ea559597e221d3e974c6474f688bb2818 (diff) | |
Already called *_free_[rt]x_list() in *_stop().
Diffstat (limited to 'sys/dev/usb/if_rum.c')
| -rw-r--r-- | sys/dev/usb/if_rum.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index 8aa0f9b3de7..b092a78eaf5 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,5 +1,5 @@ /* $OpenBSD: if_rum.c,v 1.40 2006/09/18 16:20:20 damien Exp $ */ -/* $NetBSD: if_rum.c,v 1.13 2007/07/11 20:13:14 drochner Exp $ */ +/* $NetBSD: if_rum.c,v 1.14 2007/08/15 16:58:54 kiyohara Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr> @@ -24,7 +24,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_rum.c,v 1.13 2007/07/11 20:13:14 drochner Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_rum.c,v 1.14 2007/08/15 16:58:54 kiyohara Exp $"); #include "bpfilter.h" @@ -502,9 +502,6 @@ USB_DETACH(rum) usbd_close_pipe(sc->sc_tx_pipeh); } - rum_free_rx_list(sc); - rum_free_tx_list(sc); - #if NBPFILTER > 0 bpfdetach(ifp); #endif |
