On Mon, Jul 15, 2024 at 03:39:47PM +0800, Chen Ni wrote: > Remove unnecessary semicolon at the end of the switch statement. > This is detected by coccinelle. > > Signed-off-by: Chen Ni <nichen@xxxxxxxxxxx> Reviewed-by: Heikki Krogerus <heikki.krogerus@xxxxxxxxxxxxxxx> > --- > drivers/usb/typec/ucsi/ucsi_glink.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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) > -- > 2.25.1 -- heikki