linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon
@ 2021-01-28 13:45 kernel test robot
  2021-01-28 13:45 ` [PATCH] pwm: fix semicolon.cocci warnings kernel test robot
  0 siblings, 1 reply; 5+ messages in thread
From: kernel test robot @ 2021-01-28 13:45 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: kbuild-all, linux-kernel, Thierry Reding, Martin Blumenstingl

[-- Attachment #1: Type: text/plain, Size: 789 bytes --]

Hi Krzysztof,

First bad commit (maybe != root cause):

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   76c057c84d286140c6c416c3b4ba832cd1d8984e
commit: e96c0ff4b1e013a4e9174344b0fcda0d566d3689 pwm: Enable compile testing for some of drivers
date:   10 months ago
config: sh-randconfig-c003-20210128 (attached as .config)
compiler: sh4-linux-gcc (GCC) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>


"coccinelle warnings: (new ones prefixed by >>)"
>> drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon

Please review and possibly fold the followup patch.

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 32586 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] pwm: fix semicolon.cocci warnings
  2021-01-28 13:45 drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon kernel test robot
@ 2021-01-28 13:45 ` kernel test robot
  2021-01-28 15:01   ` Vladimir Zapolskiy
  2021-01-28 20:57   ` Uwe Kleine-König
  0 siblings, 2 replies; 5+ messages in thread
From: kernel test robot @ 2021-01-28 13:45 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: kbuild-all, linux-kernel, Thierry Reding, Martin Blumenstingl,
	Uwe Kleine-König, Vladimir Zapolskiy, linux-pwm,
	linux-arm-kernel

From: kernel test robot <lkp@intel.com>

drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: e96c0ff4b1e0 ("pwm: Enable compile testing for some of drivers")
CC: Krzysztof Kozlowski <krzk@kernel.org>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: kernel test robot <lkp@intel.com>
---

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   76c057c84d286140c6c416c3b4ba832cd1d8984e
commit: e96c0ff4b1e013a4e9174344b0fcda0d566d3689 pwm: Enable compile testing for some of drivers

 pwm-lpc18xx-sct.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/pwm/pwm-lpc18xx-sct.c
+++ b/drivers/pwm/pwm-lpc18xx-sct.c
@@ -289,7 +289,7 @@ static int lpc18xx_pwm_request(struct pw
 		dev_err(lpc18xx_pwm->dev,
 			"maximum number of simultaneous channels reached\n");
 		return -EBUSY;
-	};
+	}
 
 	set_bit(event, &lpc18xx_pwm->event_map);
 	lpc18xx_data->duty_event = event;

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] pwm: fix semicolon.cocci warnings
  2021-01-28 13:45 ` [PATCH] pwm: fix semicolon.cocci warnings kernel test robot
@ 2021-01-28 15:01   ` Vladimir Zapolskiy
  2021-01-28 20:57   ` Uwe Kleine-König
  1 sibling, 0 replies; 5+ messages in thread
From: Vladimir Zapolskiy @ 2021-01-28 15:01 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: kbuild-all, linux-kernel, Thierry Reding, Martin Blumenstingl,
	Uwe Kleine-König, linux-pwm, linux-arm-kernel,
	kernel test robot

On 1/28/21 3:45 PM, kernel test robot wrote:
> From: kernel test robot <lkp@intel.com>
> 
> drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon
> 
> 
>   Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: e96c0ff4b1e0 ("pwm: Enable compile testing for some of drivers")
> CC: Krzysztof Kozlowski <krzk@kernel.org>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: kernel test robot <lkp@intel.com>

Acked-by: Vladimir Zapolskiy <vz@mleia.com>

--
Best wishes,
Vladimir

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] pwm: fix semicolon.cocci warnings
  2021-01-28 13:45 ` [PATCH] pwm: fix semicolon.cocci warnings kernel test robot
  2021-01-28 15:01   ` Vladimir Zapolskiy
@ 2021-01-28 20:57   ` Uwe Kleine-König
  2021-01-29 16:51     ` Vladimir Zapolskiy
  1 sibling, 1 reply; 5+ messages in thread
From: Uwe Kleine-König @ 2021-01-28 20:57 UTC (permalink / raw)
  To: kernel test robot
  Cc: Krzysztof Kozlowski, kbuild-all, linux-kernel, Thierry Reding,
	Martin Blumenstingl, Vladimir Zapolskiy, linux-pwm,
	linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 1549 bytes --]

Hello,

On Thu, Jan 28, 2021 at 09:45:37PM +0800, kernel test robot wrote:
> From: kernel test robot <lkp@intel.com>
> 
> drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: e96c0ff4b1e0 ("pwm: Enable compile testing for some of drivers")

This looks wrong. e96c0ff4b1e0 only touches drivers/pwm/Kconfig.

The ; was introduced by commit 841e6f90bb78 ("pwm: NXP LPC18xx PWM/SCT
driver")

Best regards
Uwe

> CC: Krzysztof Kozlowski <krzk@kernel.org>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: kernel test robot <lkp@intel.com>
> ---
> 
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head:   76c057c84d286140c6c416c3b4ba832cd1d8984e
> commit: e96c0ff4b1e013a4e9174344b0fcda0d566d3689 pwm: Enable compile testing for some of drivers
> 
>  pwm-lpc18xx-sct.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- a/drivers/pwm/pwm-lpc18xx-sct.c
> +++ b/drivers/pwm/pwm-lpc18xx-sct.c
> @@ -289,7 +289,7 @@ static int lpc18xx_pwm_request(struct pw
>  		dev_err(lpc18xx_pwm->dev,
>  			"maximum number of simultaneous channels reached\n");
>  		return -EBUSY;
> -	};
> +	}
>  
>  	set_bit(event, &lpc18xx_pwm->event_map);
>  	lpc18xx_data->duty_event = event;
> 

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] pwm: fix semicolon.cocci warnings
  2021-01-28 20:57   ` Uwe Kleine-König
@ 2021-01-29 16:51     ` Vladimir Zapolskiy
  0 siblings, 0 replies; 5+ messages in thread
From: Vladimir Zapolskiy @ 2021-01-29 16:51 UTC (permalink / raw)
  To: Uwe Kleine-König, kernel test robot, kbuild-all,
	Krzysztof Kozlowski
  Cc: linux-kernel, Thierry Reding, Martin Blumenstingl, linux-pwm,
	linux-arm-kernel

On 1/28/21 10:57 PM, Uwe Kleine-König wrote:
> Hello,
> 
> On Thu, Jan 28, 2021 at 09:45:37PM +0800, kernel test robot wrote:
>> From: kernel test robot <lkp@intel.com>
>>
>> drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon
>>
>>
>>   Remove unneeded semicolon.
>>
>> Generated by: scripts/coccinelle/misc/semicolon.cocci
>>
>> Fixes: e96c0ff4b1e0 ("pwm: Enable compile testing for some of drivers")
> 
> This looks wrong. e96c0ff4b1e0 only touches drivers/pwm/Kconfig.
> 
> The ; was introduced by commit 841e6f90bb78 ("pwm: NXP LPC18xx PWM/SCT
> driver")

Right, thank you for the correction, Uwe.

Since the patch has been composed by the robot, it has to be fixed
in the first place.

And regarding this particular change and in general fixes to this type
of issues detected by the robot, I don't think that it earns a Fixes tag.

>> CC: Krzysztof Kozlowski <krzk@kernel.org>
>> Reported-by: kernel test robot <lkp@intel.com>
>> Signed-off-by: kernel test robot <lkp@intel.com>

--
Best wishes,
Vladimir

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-01-29 16:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-28 13:45 drivers/pwm/pwm-lpc18xx-sct.c:292:2-3: Unneeded semicolon kernel test robot
2021-01-28 13:45 ` [PATCH] pwm: fix semicolon.cocci warnings kernel test robot
2021-01-28 15:01   ` Vladimir Zapolskiy
2021-01-28 20:57   ` Uwe Kleine-König
2021-01-29 16:51     ` Vladimir Zapolskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).