projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c3c0ac
)
memstick: tifm: remove unneeded semicolon
author
Tom Rix
<trix@redhat.com>
Sat, 31 Oct 2020 14:27:56 +0000
(07:27 -0700)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Mon, 16 Nov 2020 10:59:28 +0000
(11:59 +0100)
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Link:
https://lore.kernel.org/r/20201031142756.2140029-1-trix@redhat.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/memstick/host/tifm_ms.c
patch
|
blob
|
history
diff --git
a/drivers/memstick/host/tifm_ms.c
b/drivers/memstick/host/tifm_ms.c
index 786e46798da24e9ff0b75ba090eabaffaccad266..57145374f6ac4e7365748f29b9d8b13b99354efe 100644
(file)
--- a/
drivers/memstick/host/tifm_ms.c
+++ b/
drivers/memstick/host/tifm_ms.c
@@
-528,7
+528,7
@@
static int tifm_ms_set_param(struct memstick_host *msh,
} else
return -EINVAL;
break;
- }
;
+ }
return 0;
}