All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ping-Ke Shih <pkshih@realtek.com>
To: <kvalo@kernel.org>
Cc: <linux-wireless@vger.kernel.org>, <leo.li@realtek.com>,
	<johnson.lin@realtek.com>, <kevin_yang@realtek.com>
Subject: [PATCH 01/13] rtw89: ser: fix unannotated fall-through
Date: Thu, 7 Apr 2022 21:23:04 +0800	[thread overview]
Message-ID: <20220407132316.61132-2-pkshih@realtek.com> (raw)
In-Reply-To: <20220407132316.61132-1-pkshih@realtek.com>

From: Zong-Zhe Yang <kevin_yang@realtek.com>

add `break` to fix warning of unannotated fall-through between switch
labels.

Fixes: 14f9f4790048 ("rtw89: ser: control hci interrupts on/off by state")
Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
---
 drivers/net/wireless/realtek/rtw89/ser.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/wireless/realtek/rtw89/ser.c b/drivers/net/wireless/realtek/rtw89/ser.c
index 25d1df10f2262..5aebd6839d299 100644
--- a/drivers/net/wireless/realtek/rtw89/ser.c
+++ b/drivers/net/wireless/realtek/rtw89/ser.c
@@ -394,6 +394,7 @@ static void ser_idle_st_hdl(struct rtw89_ser *ser, u8 evt)
 		break;
 	case SER_EV_STATE_OUT:
 		rtw89_hci_recovery_start(rtwdev);
+		break;
 	default:
 		break;
 	}
-- 
2.25.1


  reply	other threads:[~2022-04-07 13:23 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-07 13:23 [PATCH 00/13] rtw89: refine interrupt masks for SER, and add H2C for new chip Ping-Ke Shih
2022-04-07 13:23 ` Ping-Ke Shih [this message]
2022-04-07 13:23 ` [PATCH 02/13] rtw89: ser: configure D-MAC interrupt mask Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 03/13] rtw89: ser: configure C-MAC " Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 04/13] rtw89: ser: configure top ERR IMR for firmware to recover Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 05/13] rtw89: change station scheduler setting for hardware TX mode Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 06/13] rtw89: reset BA CAM Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 07/13] rtw89: 8852c: disable firmware watchdog if CPU disabled Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 08/13] rtw89: Skip useless dig gain and igi related settings for 8852C Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 09/13] rtw89: 8852c: add 8852c specific BT-coexistence initial function Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 10/13] rtw89: extend H2C of CMAC control info Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 11/13] rtw89: add new H2C to configure security CAM via DCTL for V1 chip Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 12/13] rtw89: configure security CAM " Ping-Ke Shih
2022-04-07 13:23 ` [PATCH 13/13] rtw89: pci: correct return value handling of rtw89_write16_mdio_mask() Ping-Ke Shih

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220407132316.61132-2-pkshih@realtek.com \
    --to=pkshih@realtek.com \
    --cc=johnson.lin@realtek.com \
    --cc=kevin_yang@realtek.com \
    --cc=kvalo@kernel.org \
    --cc=leo.li@realtek.com \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.