diff mbox

ath10k: fix semicolon.cocci warnings

Message ID 20170815112620.GA104160@ivytown2.lkp.intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Fengguang Wu Aug. 15, 2017, 11:26 a.m. UTC
drivers/net/wireless/ath/ath10k/pci.c:1561:2-3: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 3773d2332824 ("ath10k: add memory dump support for QCA6174/QCA9377")
CC: Alan Liu <alanliu@qca.qualcomm.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 pci.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

--- a/drivers/net/wireless/ath/ath10k/pci.c
+++ b/drivers/net/wireless/ath/ath10k/pci.c
@@ -1558,7 +1558,7 @@  static int ath10k_pci_dump_memory_sectio
 			break;
 
 		cur_section = next_section;
-	};
+	}
 
 	return count;
 }