> -----Original Message----- > From: kbuild test robot [mailto:[email protected]] > Sent: 2016年6月24日 20:43 > To: Yang, Wenyou <[email protected]> > Cc: [email protected]; Sebastian Reichel <[email protected]>; Dmitry Eremin- > Solenikov <[email protected]>; David Woodhouse > <[email protected]>; Rob Herring <[email protected]>; Pawel Moll > <[email protected]>; Mark Brown <[email protected]>; Ian Campbell > <[email protected]>; Kumar Gala <[email protected]>; linux- > [email protected]; [email protected]; linux-arm- > [email protected]; Ferre, Nicolas <[email protected]>; linux- > [email protected]; Yang, Wenyou <[email protected]> > Subject: [PATCH] power: act8945a_charger: fix semicolon.cocci warnings > > drivers/power/act8945a_charger.c:115:2-3: Unneeded semicolon > > > Remove unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > CC: Wenyou Yang <[email protected]> > Signed-off-by: Fengguang Wu <[email protected]> Acked-by Wenyou Yang <[email protected]>
Thank you for your fix. > --- > > act8945a_charger.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/drivers/power/act8945a_charger.c > +++ b/drivers/power/act8945a_charger.c > @@ -112,7 +112,7 @@ static int act8945a_get_charger_state(st > else > *val = POWER_SUPPLY_STATUS_NOT_CHARGING; > break; > - }; > + } > > return 0; > } Best Regards, Wenyou Yang

