svn commit: r240668 - stable/9/sys/dev/usb/net
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Sep 18 17:17:04 UTC 2012
Author: hselasky
Date: Tue Sep 18 17:17:04 2012
New Revision: 240668
URL: http://svn.freebsd.org/changeset/base/240668
Log:
MFC r240597:
Remove unused variable cd.
This variable is initialized but not used.
Modified:
stable/9/sys/dev/usb/net/uhso.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/usb/net/uhso.c
==============================================================================
--- stable/9/sys/dev/usb/net/uhso.c Tue Sep 18 17:14:59 2012 (r240667)
+++ stable/9/sys/dev/usb/net/uhso.c Tue Sep 18 17:17:04 2012 (r240668)
@@ -540,7 +540,6 @@ uhso_attach(device_t self)
{
struct uhso_softc *sc = device_get_softc(self);
struct usb_attach_arg *uaa = device_get_ivars(self);
- struct usb_config_descriptor *cd;
struct usb_interface_descriptor *id;
struct sysctl_ctx_list *sctx;
struct sysctl_oid *soid;
@@ -561,7 +560,6 @@ uhso_attach(device_t self)
sc->sc_ttys = 0;
sc->sc_radio = 1;
- cd = usbd_get_config_descriptor(uaa->device);
id = usbd_get_interface_descriptor(uaa->iface);
sc->sc_ctrl_iface_no = id->bInterfaceNumber;
More information about the svn-src-stable-9
mailing list