Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Joe Perches
On Fri, 2020-05-22 at 13:34 +0300, Dan Carpenter wrote: > On Fri, May 22, 2020 at 02:46:28PM +0530, MugilRaj wrote: > > fix checkpatch.pl warning, which is Use of volatile is usually wrong: see > > Documentation/process/volatile-considered-harmful.rst > > Signed-off-by: MugilRaj > > Please put a

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Dan Carpenter
I did *really look* at the code when I was reviewing this patch. :P regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Samuel Thibault
Joe Perches, le ven. 22 mai 2020 10:22:03 -0700, a ecrit: > > Put another way: I don't think putting any hint here would help, on the > > contrary, somebody has to really look at what protection is needed, > > without getting influenced by rules-of-thumb. > > checkpatch newbies/robots will submit

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Joe Perches
On Fri, 2020-05-22 at 19:13 +0200, Samuel Thibault wrote: > Joe Perches, le ven. 22 mai 2020 09:36:05 -0700, a ecrit: > > On Fri, 2020-05-22 at 13:34 +0300, Dan Carpenter wrote: > > > On Fri, May 22, 2020 at 02:46:28PM +0530, MugilRaj wrote: > > > > fix checkpatch.pl warning, which is Use of

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Samuel Thibault
Joe Perches, le ven. 22 mai 2020 09:36:05 -0700, a ecrit: > On Fri, 2020-05-22 at 13:34 +0300, Dan Carpenter wrote: > > On Fri, May 22, 2020 at 02:46:28PM +0530, MugilRaj wrote: > > > fix checkpatch.pl warning, which is Use of volatile is usually wrong: see > > >

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Dan Carpenter
On Fri, May 22, 2020 at 02:46:28PM +0530, MugilRaj wrote: > fix checkpatch.pl warning, which is Use of volatile is usually wrong: see > Documentation/process/volatile-considered-harmful.rst > Signed-off-by: MugilRaj Please put a blank before the Signed-off-by line. Probably there should be a

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Greg Kroah-Hartman
On Fri, May 22, 2020 at 02:46:28PM +0530, MugilRaj wrote: > fix checkpatch.pl warning, which is Use of volatile is usually wrong: see > Documentation/process/volatile-considered-harmful.rst > Signed-off-by: MugilRaj As Samuel said, you can't "just remove this", otherwise it would have been done

Re: [PATCH] taging: speakup: remove volatile

2020-05-22 Thread Samuel Thibault
Hello, MugilRaj, le ven. 22 mai 2020 14:46:28 +0530, a ecrit: > fix checkpatch.pl warning, which is Use of volatile is usually wrong: see > Documentation/process/volatile-considered-harmful.rst Yes, but the proper fix is usually not to just remove the volatile qualifier, which will not fix

[PATCH] taging: speakup: remove volatile

2020-05-22 Thread MugilRaj
fix checkpatch.pl warning, which is Use of volatile is usually wrong: see Documentation/process/volatile-considered-harmful.rst Signed-off-by: MugilRaj --- drivers/staging/speakup/speakup_decext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git