memstick: tifm: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Sat, 31 Oct 2020 14:27:56 +0000 (07:27 -0700)
committerUlf 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

index 786e46798da24e9ff0b75ba090eabaffaccad266..57145374f6ac4e7365748f29b9d8b13b99354efe 100644 (file)
@@ -528,7 +528,7 @@ static int tifm_ms_set_param(struct memstick_host *msh,
                } else
                        return -EINVAL;
                break;
-       };
+       }
 
        return 0;
 }