mirror of https://gitee.com/openkylin/linux.git
staging: comedi: vmk80xx: factor out usb endpoint detection
Factor the code that detects the usb endpoints out of vmk80xx_usb_probe(). Cleanup the detection code in the new function, Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
da7b18ee8b
commit
49253d542c
|
@ -1138,6 +1138,40 @@ static int vmk80xx_pwm_winsn(struct comedi_device *dev,
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int vmk80xx_find_usb_endpoints(struct vmk80xx_private *devpriv,
|
||||||
|
struct usb_interface *intf)
|
||||||
|
{
|
||||||
|
struct usb_host_interface *iface_desc = intf->cur_altsetting;
|
||||||
|
struct usb_endpoint_descriptor *ep_desc;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
if (iface_desc->desc.bNumEndpoints != 2)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
|
for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) {
|
||||||
|
ep_desc = &iface_desc->endpoint[i].desc;
|
||||||
|
|
||||||
|
if (usb_endpoint_is_int_in(ep_desc) ||
|
||||||
|
usb_endpoint_is_bulk_in(ep_desc)) {
|
||||||
|
if (!devpriv->ep_rx)
|
||||||
|
devpriv->ep_rx = ep_desc;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (usb_endpoint_is_int_out(ep_desc) ||
|
||||||
|
usb_endpoint_is_bulk_out(ep_desc)) {
|
||||||
|
if (!devpriv->ep_tx)
|
||||||
|
devpriv->ep_tx = ep_desc;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!devpriv->ep_rx || !devpriv->ep_tx)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int vmk80xx_attach_common(struct comedi_device *dev,
|
static int vmk80xx_attach_common(struct comedi_device *dev,
|
||||||
struct vmk80xx_private *devpriv)
|
struct vmk80xx_private *devpriv)
|
||||||
{
|
{
|
||||||
|
@ -1299,9 +1333,8 @@ static int vmk80xx_usb_probe(struct usb_interface *intf,
|
||||||
{
|
{
|
||||||
const struct vmk80xx_board *boardinfo;
|
const struct vmk80xx_board *boardinfo;
|
||||||
struct vmk80xx_private *devpriv;
|
struct vmk80xx_private *devpriv;
|
||||||
struct usb_host_interface *iface_desc;
|
|
||||||
struct usb_endpoint_descriptor *ep_desc;
|
|
||||||
size_t size;
|
size_t size;
|
||||||
|
int ret;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
mutex_lock(&glb_mutex);
|
mutex_lock(&glb_mutex);
|
||||||
|
@ -1320,37 +1353,12 @@ static int vmk80xx_usb_probe(struct usb_interface *intf,
|
||||||
memset(devpriv, 0x00, sizeof(*devpriv));
|
memset(devpriv, 0x00, sizeof(*devpriv));
|
||||||
devpriv->count = i;
|
devpriv->count = i;
|
||||||
|
|
||||||
iface_desc = intf->cur_altsetting;
|
ret = vmk80xx_find_usb_endpoints(devpriv, intf);
|
||||||
if (iface_desc->desc.bNumEndpoints != 2)
|
if (ret) {
|
||||||
goto error;
|
mutex_unlock(&glb_mutex);
|
||||||
|
return ret;
|
||||||
for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) {
|
|
||||||
ep_desc = &iface_desc->endpoint[i].desc;
|
|
||||||
|
|
||||||
if (usb_endpoint_is_int_in(ep_desc)) {
|
|
||||||
devpriv->ep_rx = ep_desc;
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usb_endpoint_is_int_out(ep_desc)) {
|
|
||||||
devpriv->ep_tx = ep_desc;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (usb_endpoint_is_bulk_in(ep_desc)) {
|
|
||||||
devpriv->ep_rx = ep_desc;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (usb_endpoint_is_bulk_out(ep_desc)) {
|
|
||||||
devpriv->ep_tx = ep_desc;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!devpriv->ep_rx || !devpriv->ep_tx)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
size = le16_to_cpu(devpriv->ep_rx->wMaxPacketSize);
|
size = le16_to_cpu(devpriv->ep_rx->wMaxPacketSize);
|
||||||
devpriv->usb_rx_buf = kmalloc(size, GFP_KERNEL);
|
devpriv->usb_rx_buf = kmalloc(size, GFP_KERNEL);
|
||||||
if (!devpriv->usb_rx_buf) {
|
if (!devpriv->usb_rx_buf) {
|
||||||
|
@ -1406,10 +1414,6 @@ static int vmk80xx_usb_probe(struct usb_interface *intf,
|
||||||
comedi_usb_auto_config(intf, &vmk80xx_driver);
|
comedi_usb_auto_config(intf, &vmk80xx_driver);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
error:
|
|
||||||
mutex_unlock(&glb_mutex);
|
|
||||||
|
|
||||||
return -ENODEV;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct usb_device_id vmk80xx_usb_id_table[] = {
|
static const struct usb_device_id vmk80xx_usb_id_table[] = {
|
||||||
|
|
Loading…
Reference in New Issue