staging: vt6655: Remove unnecessary else after return

This patch fixes checkpatch.pl warning in files of vt6655
WARNING: else is not generally useful after a break or return

Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dilek Uzulmez 2014-10-08 15:46:53 +03:00 committed by Greg Kroah-Hartman
parent 3aaa06e1cb
commit 14cd1df4ba

View file

@ -1792,18 +1792,17 @@ BBuGetFrameTime(
uFrameTime++;
return uPreamble + uFrameTime;
} else {
uFrameTime = (cbFrameLength * 8 + 22) / uRate; /* ???????? */
uTmp = ((uFrameTime * uRate) - 22) / 8;
if (cbFrameLength != uTmp)
uFrameTime++;
uFrameTime = uFrameTime * 4; /* ??????? */
if (byPktType != PK_TYPE_11A)
uFrameTime += 6; /* ?????? */
return 20 + uFrameTime; /* ?????? */
}
uFrameTime = (cbFrameLength * 8 + 22) / uRate; /* ???????? */
uTmp = ((uFrameTime * uRate) - 22) / 8;
if (cbFrameLength != uTmp)
uFrameTime++;
uFrameTime = uFrameTime * 4; /* ??????? */
if (byPktType != PK_TYPE_11A)
uFrameTime += 6; /* ?????? */
return 20 + uFrameTime; /* ?????? */
}
/*