mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
staging: ft1000: Fix coding style in ft1000_submit_rx_urb function.
Fix coding style and also replace printk with proper pr_err function. Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e31e33855a
commit
6b2a66f250
@ -1203,38 +1203,36 @@ static int ft1000_copy_up_pkt (struct urb *urb)
|
||||
//---------------------------------------------------------------------------
|
||||
static int ft1000_submit_rx_urb(struct ft1000_info *info)
|
||||
{
|
||||
int result;
|
||||
struct ft1000_device *pFt1000Dev = info->pFt1000Dev;
|
||||
int result;
|
||||
struct ft1000_device *pFt1000Dev = info->pFt1000Dev;
|
||||
|
||||
//DEBUG ("ft1000_submit_rx_urb entered: sizeof rx_urb is %d\n", sizeof(*pFt1000Dev->rx_urb));
|
||||
if (pFt1000Dev->status & FT1000_STATUS_CLOSING) {
|
||||
DEBUG("network driver is closed, return\n");
|
||||
//usb_kill_urb(pFt1000Dev->rx_urb); //mbelian
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
//DEBUG ("ft1000_submit_rx_urb entered: sizeof rx_urb is %d\n", sizeof(*pFt1000Dev->rx_urb));
|
||||
if ( pFt1000Dev->status & FT1000_STATUS_CLOSING)
|
||||
{
|
||||
DEBUG("network driver is closed, return\n");
|
||||
//usb_kill_urb(pFt1000Dev->rx_urb); //mbelian
|
||||
return -ENODEV;
|
||||
}
|
||||
usb_fill_bulk_urb(pFt1000Dev->rx_urb,
|
||||
pFt1000Dev->dev,
|
||||
usb_rcvbulkpipe(pFt1000Dev->dev,
|
||||
pFt1000Dev->bulk_in_endpointAddr),
|
||||
pFt1000Dev->rx_buf, MAX_BUF_SIZE,
|
||||
(usb_complete_t) ft1000_copy_up_pkt, info);
|
||||
|
||||
usb_fill_bulk_urb(pFt1000Dev->rx_urb,
|
||||
pFt1000Dev->dev,
|
||||
usb_rcvbulkpipe(pFt1000Dev->dev, pFt1000Dev->bulk_in_endpointAddr),
|
||||
pFt1000Dev->rx_buf,
|
||||
MAX_BUF_SIZE,
|
||||
(usb_complete_t)ft1000_copy_up_pkt,
|
||||
info);
|
||||
result = usb_submit_urb(pFt1000Dev->rx_urb, GFP_ATOMIC);
|
||||
|
||||
|
||||
if((result = usb_submit_urb(pFt1000Dev->rx_urb, GFP_ATOMIC)))
|
||||
{
|
||||
printk("ft1000_submit_rx_urb: submitting rx_urb %d failed\n", result);
|
||||
return result;
|
||||
}
|
||||
|
||||
//DEBUG("ft1000_submit_rx_urb exit: result=%d\n", result);
|
||||
if (result) {
|
||||
pr_err("ft1000_submit_rx_urb: submitting rx_urb %d failed\n",
|
||||
result);
|
||||
return result;
|
||||
}
|
||||
//DEBUG("ft1000_submit_rx_urb exit: result=%d\n", result);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
// Function: ft1000_open
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user