staging/easycap: fix style issues in easycap_usb_probe function
fix some code styles and drop too verbose printouts and non relevant code Cc: Mike Thomas <rmthomas@sciolus.org> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Reviewed-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ecc1058aec
commit
e03da5e2b7
@@ -3153,7 +3153,6 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
struct usb_host_interface *pusb_host_interface;
|
struct usb_host_interface *pusb_host_interface;
|
||||||
struct usb_endpoint_descriptor *pepd;
|
struct usb_endpoint_descriptor *pepd;
|
||||||
struct usb_interface_descriptor *pusb_interface_descriptor;
|
struct usb_interface_descriptor *pusb_interface_descriptor;
|
||||||
struct usb_interface_assoc_descriptor *pusb_interface_assoc_descriptor;
|
|
||||||
struct urb *purb;
|
struct urb *purb;
|
||||||
struct easycap *peasycap;
|
struct easycap *peasycap;
|
||||||
int ndong;
|
int ndong;
|
||||||
@@ -3212,55 +3211,14 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
bInterfaceClass = pusb_interface_descriptor->bInterfaceClass;
|
bInterfaceClass = pusb_interface_descriptor->bInterfaceClass;
|
||||||
bInterfaceSubClass = pusb_interface_descriptor->bInterfaceSubClass;
|
bInterfaceSubClass = pusb_interface_descriptor->bInterfaceSubClass;
|
||||||
|
|
||||||
JOT(4, "intf[%i]: pusb_interface->num_altsetting=%i\n",
|
JOT(4, "intf[%i]: num_altsetting=%i\n",
|
||||||
bInterfaceNumber, pusb_interface->num_altsetting);
|
bInterfaceNumber, pusb_interface->num_altsetting);
|
||||||
JOT(4, "intf[%i]: pusb_interface->cur_altsetting - "
|
JOT(4, "intf[%i]: cur_altsetting - altsetting=%li\n",
|
||||||
"pusb_interface->altsetting=%li\n", bInterfaceNumber,
|
bInterfaceNumber,
|
||||||
(long int)(pusb_interface->cur_altsetting -
|
(long int)(pusb_interface->cur_altsetting -
|
||||||
pusb_interface->altsetting));
|
pusb_interface->altsetting));
|
||||||
switch (bInterfaceClass) {
|
JOT(4, "intf[%i]: bInterfaceClass=0x%02X bInterfaceSubClass=0x%02X\n",
|
||||||
case USB_CLASS_AUDIO: {
|
bInterfaceNumber, bInterfaceClass, bInterfaceSubClass);
|
||||||
JOT(4, "intf[%i]: bInterfaceClass=0x%02X=USB_CLASS_AUDIO\n",
|
|
||||||
bInterfaceNumber, bInterfaceClass); break;
|
|
||||||
}
|
|
||||||
case USB_CLASS_VIDEO: {
|
|
||||||
JOT(4, "intf[%i]: bInterfaceClass=0x%02X=USB_CLASS_VIDEO\n",
|
|
||||||
bInterfaceNumber, bInterfaceClass); break;
|
|
||||||
}
|
|
||||||
case USB_CLASS_VENDOR_SPEC: {
|
|
||||||
JOT(4, "intf[%i]: bInterfaceClass=0x%02X=USB_CLASS_VENDOR_SPEC\n",
|
|
||||||
bInterfaceNumber, bInterfaceClass); break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
switch (bInterfaceSubClass) {
|
|
||||||
case 0x01: {
|
|
||||||
JOT(4, "intf[%i]: bInterfaceSubClass=0x%02X=AUDIOCONTROL\n",
|
|
||||||
bInterfaceNumber, bInterfaceSubClass); break;
|
|
||||||
}
|
|
||||||
case 0x02: {
|
|
||||||
JOT(4, "intf[%i]: bInterfaceSubClass=0x%02X=AUDIOSTREAMING\n",
|
|
||||||
bInterfaceNumber, bInterfaceSubClass); break;
|
|
||||||
}
|
|
||||||
case 0x03: {
|
|
||||||
JOT(4, "intf[%i]: bInterfaceSubClass=0x%02X=MIDISTREAMING\n",
|
|
||||||
bInterfaceNumber, bInterfaceSubClass); break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
|
||||||
pusb_interface_assoc_descriptor = pusb_interface->intf_assoc;
|
|
||||||
if (NULL != pusb_interface_assoc_descriptor) {
|
|
||||||
JOT(4, "intf[%i]: bFirstInterface=0x%02X bInterfaceCount=0x%02X\n",
|
|
||||||
bInterfaceNumber,
|
|
||||||
pusb_interface_assoc_descriptor->bFirstInterface,
|
|
||||||
pusb_interface_assoc_descriptor->bInterfaceCount);
|
|
||||||
} else {
|
|
||||||
JOT(4, "intf[%i]: pusb_interface_assoc_descriptor is NULL\n",
|
|
||||||
bInterfaceNumber);
|
|
||||||
}
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
* A NEW struct easycap IS ALWAYS ALLOCATED WHEN INTERFACE 0 IS PROBED.
|
* A NEW struct easycap IS ALWAYS ALLOCATED WHEN INTERFACE 0 IS PROBED.
|
||||||
@@ -3278,7 +3236,6 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
SAY("ERROR: Could not allocate peasycap\n");
|
SAY("ERROR: Could not allocate peasycap\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
SAM("allocated %p=peasycap\n", peasycap);
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
* PERFORM URGENT INTIALIZATIONS ...
|
* PERFORM URGENT INTIALIZATIONS ...
|
||||||
@@ -3458,12 +3415,12 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
peasycap->inputset[k].format_offset = i;
|
peasycap->inputset[k].format_offset = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
peasycap_format++;
|
peasycap_format++;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
if (1 != m) {
|
if (1 != m) {
|
||||||
SAM("MISTAKE: easycap.inputset[].format_offset unpopulated\n");
|
SAM("MISTAKE: easycap.inputset[].format_offset unpopulated\n");
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
@@ -3489,6 +3446,7 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (4 != m) {
|
if (4 != m) {
|
||||||
SAM("MISTAKE: easycap.inputset[].brightness,... "
|
SAM("MISTAKE: easycap.inputset[].brightness,... "
|
||||||
"underpopulated\n");
|
"underpopulated\n");
|
||||||
@@ -3623,8 +3581,8 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
INTbEndpointAddress = 0;
|
INTbEndpointAddress = 0;
|
||||||
|
|
||||||
if (0 == pusb_interface_descriptor->bNumEndpoints)
|
if (0 == pusb_interface_descriptor->bNumEndpoints)
|
||||||
JOM(4, "intf[%i]alt[%i] has no endpoints\n",
|
JOM(4, "intf[%i]alt[%i] has no endpoints\n",
|
||||||
bInterfaceNumber, i);
|
bInterfaceNumber, i);
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
for (j = 0; j < pusb_interface_descriptor->bNumEndpoints; j++) {
|
for (j = 0; j < pusb_interface_descriptor->bNumEndpoints; j++) {
|
||||||
pepd = &(pusb_host_interface->endpoint[j].desc);
|
pepd = &(pusb_host_interface->endpoint[j].desc);
|
||||||
@@ -3660,9 +3618,8 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
SAM("...... continuing\n");
|
SAM("...... continuing\n");
|
||||||
isin = 0;
|
isin = 0;
|
||||||
}
|
}
|
||||||
if ((pepd->bmAttributes &
|
if ((pepd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
|
||||||
USB_ENDPOINT_XFERTYPE_MASK) ==
|
USB_ENDPOINT_XFER_ISOC) {
|
||||||
USB_ENDPOINT_XFER_ISOC) {
|
|
||||||
JOM(4, "intf[%i]alt[%i]end[%i] is an ISOC endpoint\n",
|
JOM(4, "intf[%i]alt[%i]end[%i] is an ISOC endpoint\n",
|
||||||
bInterfaceNumber, i, j);
|
bInterfaceNumber, i, j);
|
||||||
if (isin) {
|
if (isin) {
|
||||||
@@ -3812,7 +3769,7 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
*/
|
*/
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
JOM(4, "initialization begins for interface %i\n",
|
JOM(4, "initialization begins for interface %i\n",
|
||||||
pusb_interface_descriptor->bInterfaceNumber);
|
pusb_interface_descriptor->bInterfaceNumber);
|
||||||
switch (bInterfaceNumber) {
|
switch (bInterfaceNumber) {
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
/*
|
/*
|
||||||
@@ -3840,19 +3797,17 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
peasycap->video_endpointnumber = okepn[isokalt - 1];
|
peasycap->video_endpointnumber = okepn[isokalt - 1];
|
||||||
JOM(4, "%i=video_endpointnumber\n", peasycap->video_endpointnumber);
|
JOM(4, "%i=video_endpointnumber\n", peasycap->video_endpointnumber);
|
||||||
maxpacketsize = okmps[isokalt - 1];
|
maxpacketsize = okmps[isokalt - 1];
|
||||||
if (USB_2_0_MAXPACKETSIZE > maxpacketsize) {
|
|
||||||
peasycap->video_isoc_maxframesize = maxpacketsize;
|
peasycap->video_isoc_maxframesize =
|
||||||
} else {
|
min(maxpacketsize, USB_2_0_MAXPACKETSIZE);
|
||||||
peasycap->video_isoc_maxframesize =
|
|
||||||
USB_2_0_MAXPACKETSIZE;
|
|
||||||
}
|
|
||||||
JOM(4, "%i=video_isoc_maxframesize\n",
|
|
||||||
peasycap->video_isoc_maxframesize);
|
|
||||||
if (0 >= peasycap->video_isoc_maxframesize) {
|
if (0 >= peasycap->video_isoc_maxframesize) {
|
||||||
SAM("ERROR: bad video_isoc_maxframesize\n");
|
SAM("ERROR: bad video_isoc_maxframesize\n");
|
||||||
SAM(" possibly because port is USB 1.1\n");
|
SAM(" possibly because port is USB 1.1\n");
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
JOM(4, "%i=video_isoc_maxframesize\n",
|
||||||
|
peasycap->video_isoc_maxframesize);
|
||||||
|
|
||||||
peasycap->video_isoc_framesperdesc = VIDEO_ISOC_FRAMESPERDESC;
|
peasycap->video_isoc_framesperdesc = VIDEO_ISOC_FRAMESPERDESC;
|
||||||
JOM(4, "%i=video_isoc_framesperdesc\n",
|
JOM(4, "%i=video_isoc_framesperdesc\n",
|
||||||
peasycap->video_isoc_framesperdesc);
|
peasycap->video_isoc_framesperdesc);
|
||||||
@@ -4354,16 +4309,16 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
SAM("ERROR: usb_alloc_urb returned NULL for buffer "
|
SAM("ERROR: usb_alloc_urb returned NULL for buffer "
|
||||||
"%i\n", k);
|
"%i\n", k);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
} else
|
}
|
||||||
peasycap->allocation_audio_urb += 1 ;
|
peasycap->allocation_audio_urb += 1 ;
|
||||||
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
||||||
pdata_urb = kzalloc(sizeof(struct data_urb), GFP_KERNEL);
|
pdata_urb = kzalloc(sizeof(struct data_urb), GFP_KERNEL);
|
||||||
if (NULL == pdata_urb) {
|
if (NULL == pdata_urb) {
|
||||||
SAM("ERROR: Could not allocate struct data_urb.\n");
|
SAM("ERROR: Could not allocate struct data_urb.\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
} else
|
}
|
||||||
peasycap->allocation_audio_struct +=
|
peasycap->allocation_audio_struct +=
|
||||||
sizeof(struct data_urb);
|
sizeof(struct data_urb);
|
||||||
|
|
||||||
pdata_urb->purb = purb;
|
pdata_urb->purb = purb;
|
||||||
pdata_urb->isbuf = k;
|
pdata_urb->isbuf = k;
|
||||||
@@ -4487,8 +4442,7 @@ static int easycap_usb_probe(struct usb_interface *pusb_interface,
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SAM("ends successfully for interface %i\n",
|
SAM("ends successfully for interface %i\n", bInterfaceNumber);
|
||||||
pusb_interface_descriptor->bInterfaceNumber);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
Reference in New Issue
Block a user