diff options
author | Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> | 2024-07-24 18:23:51 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-31 10:40:08 +0200 |
commit | b1dad2f091382b0049c72dab8153779248fa8016 (patch) | |
tree | cec8faba895d6669de8651d3415767b8b2cad05d /drivers/usb | |
parent | usb: typec: tipd: Fix dereferencing freeing memory in tps6598x_apply_patch() (diff) | |
download | linux-b1dad2f091382b0049c72dab8153779248fa8016.tar.xz linux-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>
Diffstat (limited to 'drivers/usb')
-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) { |