[PATCH v2] HID: mcp2221: Remove unnecessary semicolon

Chen Ni posted 1 patch 1 year, 5 months ago
drivers/hid/hid-mcp2221.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH v2] HID: mcp2221: Remove unnecessary semicolon
Posted by Chen Ni 1 year, 5 months ago
Remove unnecessary semicolon at the end of the switch statement.
This is detected by coccinelle.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
Changelog:

v1 -> v2:

1. Update commit message.
2. Remove Fixes tag.
---
 drivers/hid/hid-mcp2221.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/hid-mcp2221.c b/drivers/hid/hid-mcp2221.c
index da5ea5a23b08..0f93c22a479f 100644
--- a/drivers/hid/hid-mcp2221.c
+++ b/drivers/hid/hid-mcp2221.c
@@ -1048,7 +1048,7 @@ static int mcp_iio_channels(struct mcp2221 *mcp)
 			break;
 		default:
 			continue;
-		};
+		}
 
 		chan->type = IIO_VOLTAGE;
 		chan->indexed = 1;
-- 
2.25.1
Re: [PATCH v2] HID: mcp2221: Remove unnecessary semicolon
Posted by Benjamin Tissoires 1 year, 5 months ago
On Tue, 09 Jul 2024 09:22:23 +0800, Chen Ni wrote:
> Remove unnecessary semicolon at the end of the switch statement.
> This is detected by coccinelle.
> 
> 

Applied to hid/hid.git (for-6.11/trivial), thanks!

[1/1] HID: mcp2221: Remove unnecessary semicolon
      https://git.kernel.org/hid/hid/c/ad1ff1f250c9

Cheers,
-- 
Benjamin Tissoires <bentiss@kernel.org>