]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: vt6655: baseband: Remove unnecessary space after a cast
authorSandhya Bankar <bankarsandhya512@gmail.com>
Mon, 19 Sep 2016 12:14:43 +0000 (17:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Sep 2016 11:59:46 +0000 (13:59 +0200)
No space is necessary after a cast. This issue was found by checkpatch.

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/baseband.c

index 654d072bdc284346b6428eedf85bb035d03f40ca..de503a316e713019a99fbc36b55b2c9113341e32 100644 (file)
@@ -1729,7 +1729,7 @@ BBuGetFrameTime(
        unsigned int uFrameTime;
        unsigned int uPreamble;
        unsigned int uTmp;
-       unsigned int uRateIdx = (unsigned int) wRate;
+       unsigned int uRateIdx = (unsigned int)wRate;
        unsigned int uRate = 0;
 
        if (uRateIdx > RATE_54M)