Message ID | 20240715073947.4028319-1-nichen@iscas.ac.cn (mailing list archive) |
---|---|
State | Accepted |
Commit | acabfb1b79802e8a7fc17c7f73271e2250fead0c |
Headers | show |
Series | usb: typec: ucsi: glink: Remove unnecessary semicolon | expand |
On Mon, Jul 15, 2024 at 03:39:47PM GMT, Chen Ni wrote: > Remove unnecessary semicolon at the end of the switch statement. > This is detected by coccinelle. > > Signed-off-by: Chen Ni <nichen@iscas.ac.cn> > --- > drivers/usb/typec/ucsi/ucsi_glink.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
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@iscas.ac.cn> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> > --- > 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
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)
Remove unnecessary semicolon at the end of the switch statement. This is detected by coccinelle. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> --- drivers/usb/typec/ucsi/ucsi_glink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)