Re: [PATCH] staging: gasket: replace symbolic permissions

2020-06-22 Thread Rodolfo C Villordo
On Fri, Jun 19, 2020 at 10:32:24AM +0200, Greg Kroah-Hartman wrote: > On Fri, Jun 19, 2020 at 08:27:14AM +, Rodolfo C Villordo wrote: > > On Thu, Jun 18, 2020 at 09:47:50AM +0200, Greg Kroah-Hartman wrote: > > > On Mon, Jun 01, 2020 at 12:52:40AM +, Rodolfo C. Villordo wrote: > > > >

Re: [PATCH] staging: gasket: replace symbolic permissions

2020-06-19 Thread Greg Kroah-Hartman
On Fri, Jun 19, 2020 at 08:27:14AM +, Rodolfo C Villordo wrote: > On Thu, Jun 18, 2020 at 09:47:50AM +0200, Greg Kroah-Hartman wrote: > > On Mon, Jun 01, 2020 at 12:52:40AM +, Rodolfo C. Villordo wrote: > > > WARNING: Symbolic permissions 'S_IRUGO' are not preferred. Consider using > > >

Re: [PATCH] staging: gasket: replace symbolic permissions

2020-06-19 Thread Rodolfo C Villordo
On Thu, Jun 18, 2020 at 09:47:50AM +0200, Greg Kroah-Hartman wrote: > On Mon, Jun 01, 2020 at 12:52:40AM +, Rodolfo C. Villordo wrote: > > WARNING: Symbolic permissions 'S_IRUGO' are not preferred. Consider using > > octal permissions '0444'. > > + .attr = __ATTR(_name, S_IRUGO,

Re: [PATCH] staging: gasket: replace symbolic permissions

2020-06-18 Thread Greg Kroah-Hartman
On Mon, Jun 01, 2020 at 12:52:40AM +, Rodolfo C. Villordo wrote: > WARNING: Symbolic permissions 'S_IRUGO' are not preferred. Consider using > octal permissions '0444'. > + .attr = __ATTR(_name, S_IRUGO, _show_function, NULL), > \ > warning detected by checkpatch.pl >

[PATCH] staging: gasket: replace symbolic permissions

2020-05-31 Thread Rodolfo C. Villordo
WARNING: Symbolic permissions 'S_IRUGO' are not preferred. Consider using octal permissions '0444'. + .attr = __ATTR(_name, S_IRUGO, _show_function, NULL), \ warning detected by checkpatch.pl Signed-off-by: Rodolfo C. Villordo --- drivers/staging/gasket/gasket_sysfs.h |

Re: [PATCH] staging: gasket: replace symbolic permissions with octal permissions

2019-04-16 Thread Greg KH
On Wed, Apr 10, 2019 at 03:58:48PM +0530, Himadri Pandya wrote: > Resolve checkpatch warning for using symbolic permissions by replacing > them with octal permissions. > > Signed-off-by: Himadri Pandya > --- > drivers/staging/gasket/gasket_sysfs.h | 2 +- > 1 file changed, 1 insertion(+), 1

[PATCH] staging: gasket: replace symbolic permissions with octal permissions

2019-04-10 Thread Himadri Pandya
Resolve checkpatch warning for using symbolic permissions by replacing them with octal permissions. Signed-off-by: Himadri Pandya --- drivers/staging/gasket/gasket_sysfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/gasket/gasket_sysfs.h