Browse Source

ath10k: remove unneeded semicolon

Remove redundant semicolon after switch statement.

Signed-off-by: Waldemar Rymarkiewicz <ext.waldemar.rymarkiewicz@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Waldemar Rymarkiewicz 8 years ago
parent
commit
dab55d1083
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/wireless/ath/ath10k/htt_rx.c

+ 1 - 1
drivers/net/wireless/ath/ath10k/htt_rx.c

@@ -2492,7 +2492,7 @@ bool ath10k_htt_t2h_msg_handler(struct ath10k *ar, struct sk_buff *skb)
 		ath10k_dbg_dump(ar, ATH10K_DBG_HTT_DUMP, NULL, "htt event: ",
 				skb->data, skb->len);
 		break;
-	};
+	}
 	return true;
 }
 EXPORT_SYMBOL(ath10k_htt_t2h_msg_handler);