diff options
author | Feyza Yavuz <feyzaayavuz@gmail.com> | 2014-10-01 14:29:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-02 14:56:43 -0400 |
commit | 9f654a7f25a95080d4cf0909c08d840ff0ac6998 (patch) | |
tree | 7964c14a60268d9882b6f74fa66577f11a91fe7e | |
parent | c2e191ebfe9bf5ab4eeae03cd36cc4e3b31aade3 (diff) |
staging: rtl8192e: rtl8192e: Remove spaces before the semicolons
Patch the following checkpatch.pl warnings
drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c:232: warning:
space prohibited before semicolon
drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c:236: warning:
space prohibited before semicolon
Signed-off-by: Feyza Yavuz <feyzaayavuz@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c b/drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c index 6ef0566fff48..0e6bdd222e75 100644 --- a/drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c +++ b/drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.c | |||
@@ -228,11 +228,11 @@ bool phy_RF8256_Config_ParaFile(struct net_device *dev) | |||
228 | 228 | ||
229 | } | 229 | } |
230 | 230 | ||
231 | RT_TRACE(COMP_PHY, "PHY Initialization Success\n") ; | 231 | RT_TRACE(COMP_PHY, "PHY Initialization Success\n"); |
232 | return true; | 232 | return true; |
233 | 233 | ||
234 | phy_RF8256_Config_ParaFile_Fail: | 234 | phy_RF8256_Config_ParaFile_Fail: |
235 | RT_TRACE(COMP_ERR, "PHY Initialization failed\n") ; | 235 | RT_TRACE(COMP_ERR, "PHY Initialization failed\n"); |
236 | return false; | 236 | return false; |
237 | } | 237 | } |
238 | 238 | ||