igb: Cleanups to fix for trailing statement
authorCarolyn Wyborny <[email protected]>
Fri, 11 Apr 2014 01:45:55 +0000 (01:45 +0000)
committerJeff Kirsher <[email protected]>
Fri, 25 Apr 2014 00:26:26 +0000 (17:26 -0700)
This patch fixes WARNING:TRAILING_STATEMENT from checkpatch file check.

Signed-off-by: Carolyn Wyborny <[email protected]>
Tested-by: Aaron Brown <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
drivers/net/ethernet/intel/igb/e1000_82575.c

index a83fcadeeb92046afd0d09aa3c059a95e67db875..beeebabde38d69762709a5f5fb9d734be59e6c7e 100644 (file)
@@ -1179,8 +1179,8 @@ static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask)
 {
        u32 swfw_sync;
 
-       while (igb_get_hw_semaphore(hw) != 0);
-       /* Empty */
+       while (igb_get_hw_semaphore(hw) != 0)
+               ; /* Empty */
 
        swfw_sync = rd32(E1000_SW_FW_SYNC);
        swfw_sync &= ~mask;