diff options
author | 2024-07-09 09:22:23 +0800 | |
---|---|---|
committer | 2024-07-12 18:30:11 +0200 | |
commit | ad1ff1f250c966b945d40a6a2e548f7d701b96df (patch) | |
tree | 801193b0884a0ebeef986e02e661784032c0f7de | |
parent | Merge tag 'for-linus-2024060801' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid (diff) | |
download | wireguard-linux-ad1ff1f250c966b945d40a6a2e548f7d701b96df.tar.xz wireguard-linux-ad1ff1f250c966b945d40a6a2e548f7d701b96df.zip |
HID: mcp2221: Remove unnecessary semicolon
Remove unnecessary semicolon at the end of the switch statement.
This is detected by coccinelle.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://patch.msgid.link/20240709012223.17393-1-nichen@iscas.ac.cn
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/hid/hid-mcp2221.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |