diff options
author | Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> | 2024-07-24 09:23:51 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-31 10:40:08 +0200 |
commit | b1dad2f091382b0049c72dab8153779248fa8016 (patch) | |
tree | cec8faba895d6669de8651d3415767b8b2cad05d | |
parent | 8290b567621ba4e3ccf45ec9d67e0507196c5ddc (diff) | |
download | linux-stable-b1dad2f091382b0049c72dab8153779248fa8016.tar.gz linux-stable-b1dad2f091382b0049c72dab8153779248fa8016.tar.bz2 linux-stable-b1dad2f091382b0049c72dab8153779248fa8016.zip |
usb: typec: tipd: Delete extra semi-colon
There shouldn't be a ; at the end of the function, delete it.
Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Reviewed-by: Javier Carrasco <javier.carrasco@wolfvision.net>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20240724162356.992763-2-harshit.m.mogalapalli@oracle.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/typec/tipd/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c index eb5596e3406a..dd51a25480bf 100644 --- a/drivers/usb/typec/tipd/core.c +++ b/drivers/usb/typec/tipd/core.c @@ -1198,7 +1198,7 @@ release_fw: release_firmware(fw); return ret; -}; +} static int cd321x_init(struct tps6598x *tps) { |