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/ubx.c | |
parent | fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf (diff) |
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/ubx.c')
-rw-r--r-- | drivers/gnss/ubx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gnss/ubx.c b/drivers/gnss/ubx.c index 7b05bc40532e..c951be202ca2 100644 --- a/drivers/gnss/ubx.c +++ b/drivers/gnss/ubx.c @@ -126,7 +126,7 @@ static void ubx_remove(struct serdev_device *serdev) if (data->v_bckp) regulator_disable(data->v_bckp); gnss_serial_free(gserial); -}; +} #ifdef CONFIG_OF static const struct of_device_id ubx_of_match[] = { |