staging: vt6655: Remove unreachable break statements

This fixes break "break is not useful after a goto or return"
checkpatch warnings.

Signed-off-by: Guillaume Clement <gclement@baobob.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Guillaume Clement
2014-07-25 01:06:23 +02:00
committed by Greg Kroah-Hartman
parent a1613423cd
commit cef27eae2f
2 changed files with 0 additions and 3 deletions

View File

@@ -873,11 +873,9 @@ bool RFvWriteWakeProgSyn(void __iomem *dwIoBase, unsigned char byRFType, unsigne
case RF_NOTHING:
return true;
break;
default:
return false;
break;
}
MACvSetMISCFifo(dwIoBase, MISCFIFO_SYNINFO_IDX, (unsigned long)MAKEWORD(bySleepCount, byInitCount));

View File

@@ -262,7 +262,6 @@ WPA_SearchRSN(
return false;
}
return true;
break;
default:
break;