mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
26 lines
1016 B
Diff
26 lines
1016 B
Diff
|
From 10bb92217747c3384a01ebec005faa2f5e72bbd8 Mon Sep 17 00:00:00 2001
|
||
|
From: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
|
||
|
Date: Mon, 22 Oct 2018 22:45:19 +0200
|
||
|
Subject: [PATCH 08/28] rt2x00: rt2500pci: mark expected switch fall-through
|
||
|
|
||
|
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
|
||
|
where we are expecting to fall through.
|
||
|
|
||
|
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
|
||
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
||
|
---
|
||
|
drivers/net/wireless/ralink/rt2x00/rt2500pci.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/net/wireless/ralink/rt2x00/rt2500pci.c
|
||
|
+++ b/drivers/net/wireless/ralink/rt2x00/rt2500pci.c
|
||
|
@@ -1430,7 +1430,7 @@ static void rt2500pci_txdone(struct rt2x
|
||
|
break;
|
||
|
case 2: /* Failure, excessive retries */
|
||
|
__set_bit(TXDONE_EXCESSIVE_RETRY, &txdesc.flags);
|
||
|
- /* Don't break, this is a failed frame! */
|
||
|
+ /* Fall through - this is a failed frame! */
|
||
|
default: /* Failure */
|
||
|
__set_bit(TXDONE_FAILURE, &txdesc.flags);
|
||
|
}
|