staging: ft1000: ft1000-usb: Removed unnecessary else statement.
This patch fixes "else is not generally useful after a break or return" checkpatch.pl warning in ft1000_hw.c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3636ce82db
commit
c89e6be711
1 changed files with 47 additions and 49 deletions
|
@ -566,10 +566,9 @@ static int ft1000_copy_down_pkt(struct net_device *netdev, u8 *packet, u16 len)
|
|||
if (ret) {
|
||||
DEBUG("ft1000 failed tx_urb %d\n", ret);
|
||||
return ret;
|
||||
} else {
|
||||
}
|
||||
pInfo->stats.tx_packets++;
|
||||
pInfo->stats.tx_bytes += (len + 14);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -998,7 +997,7 @@ static bool ft1000_receive_cmd(struct ft1000_usb *dev, u16 *pbuffer,
|
|||
DEBUG("FT1000:ft1000_receive_cmd:Invalid command length = %d\n",
|
||||
size);
|
||||
return FALSE;
|
||||
} else {
|
||||
}
|
||||
ppseudohdr = (u16 *) pbuffer;
|
||||
ft1000_write_register(dev, FT1000_DPRAM_MAG_RX_BASE,
|
||||
FT1000_REG_DPRAM_ADDR);
|
||||
|
@ -1044,7 +1043,6 @@ static bool ft1000_receive_cmd(struct ft1000_usb *dev, u16 *pbuffer,
|
|||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
static int ft1000_dsp_prov(void *arg)
|
||||
|
|
Loading…
Add table
Reference in a new issue