diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-02-28 17:14:03 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-02-28 17:14:03 +0000 |
commit | ea8d02b4ddafcb724135189d62f3ef1ab1f821cf (patch) | |
tree | c37a1bfee6b04d79db9718d07039d94aa0f04fa2 /sys/dev/usb/usb_device.h | |
parent | 322413c46c002718cc357647800a58347e6a7535 (diff) | |
download | FreeBSD-src-ea8d02b4ddafcb724135189d62f3ef1ab1f821cf.zip FreeBSD-src-ea8d02b4ddafcb724135189d62f3ef1ab1f821cf.tar.gz |
- Remove the usb interface number from the device nodes as it is not needed.
- Do not recreate the device nodes in set_alt_interface as the endpoints do not
change.
Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/usb_device.h')
-rw-r--r-- | sys/dev/usb/usb_device.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_device.h b/sys/dev/usb/usb_device.h index bca3a1d..8ebf9e5 100644 --- a/sys/dev/usb/usb_device.h +++ b/sys/dev/usb/usb_device.h @@ -65,8 +65,6 @@ struct usb2_interface { device_t subdev; uint8_t alt_index; uint8_t parent_iface_index; - uint16_t ep_in_mask; /* bitmask of IN endpoints */ - uint16_t ep_out_mask; /* bitmask of OUT endpoints */ }; /* |