staging: vt6655: Fixed else after return or break warning.

This patch fixes multiple instances of checkpatch.pl
WARNING : else is not generally useful after a break or return in
device_main.c

Signed-off-by: Melike Yurtoglu <aysemelikeyurtoglu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Melike Yurtoglu 2014-10-06 16:21:46 +03:00 committed by Greg Kroah-Hartman
parent d84e63378b
commit b7f0790d73

View file

@ -2915,9 +2915,8 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
if (!(pDevice->flags & DEVICE_FLAGS_OPENED)) {
rc = -EFAULT;
break;
} else {
rc = 0;
}
rc = 0;
pReq = (PSCmdRequest)rq;
pReq->wResult = MAGIC_CODE;
break;
@ -2934,9 +2933,8 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
{
rc = -EFAULT;
break;
} else {
rc = 0;
}
rc = 0;
if (test_and_set_bit(0, (void *)&(pMgmt->uCmdBusy)))
return -EBUSY;