diff options
author | Johan Hovold <johan@kernel.org> | 2021-01-08 12:22:33 +0100 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2021-11-15 08:22:26 +0100 |
commit | b15c90153fd906af6e70821a301e78d379bd482d (patch) | |
tree | 33e0a5bff161bcb5d928cc479c5fc40b12f517b0 /drivers/gnss/sirf.c | |
parent | Linux 5.16-rc1 (diff) | |
download | linux-b15c90153fd906af6e70821a301e78d379bd482d.tar.xz linux-b15c90153fd906af6e70821a301e78d379bd482d.zip |
gnss: drop stray semicolons
Drop semicolons after function definitions that have managed to sneak in
and get reproduced.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/gnss/sirf.c')
-rw-r--r-- | drivers/gnss/sirf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gnss/sirf.c b/drivers/gnss/sirf.c index 2ecb1d3e8eeb..bcb53ccfee4d 100644 --- a/drivers/gnss/sirf.c +++ b/drivers/gnss/sirf.c @@ -551,7 +551,7 @@ static void sirf_remove(struct serdev_device *serdev) regulator_disable(data->vcc); gnss_put_device(data->gdev); -}; +} #ifdef CONFIG_OF static const struct of_device_id sirf_of_match[] = { |