diff options
| author | Chen Ni <[email protected]> | 2024-07-15 15:39:47 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2024-07-31 10:41:50 +0200 |
| commit | acabfb1b79802e8a7fc17c7f73271e2250fead0c (patch) | |
| tree | b8a944203dc5c2da97a3a85070416993a5dec6fe | |
| parent | bb548c1654db4a6f1a42657ed9068237e0c044b5 (diff) | |
usb: typec: ucsi: glink: Remove unnecessary semicolon
Remove unnecessary semicolon at the end of the switch statement.
This is detected by coccinelle.
Signed-off-by: Chen Ni <[email protected]>
Reviewed-by: Dmitry Baryshkov <[email protected]>
Reviewed-by: Heikki Krogerus <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/usb/typec/ucsi/ucsi_glink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/typec/ucsi/ucsi_glink.c b/drivers/usb/typec/ucsi/ucsi_glink.c index 16c328497e0b..459a5af02910 100644 --- a/drivers/usb/typec/ucsi/ucsi_glink.c +++ b/drivers/usb/typec/ucsi/ucsi_glink.c @@ -263,7 +263,7 @@ static void pmic_glink_ucsi_callback(const void *data, size_t len, void *priv) case UC_UCSI_USBC_NOTIFY_IND: schedule_work(&ucsi->notify_work); break; - }; + } } static void pmic_glink_ucsi_pdr_notify(void *priv, int state) |