diff mbox series

hwmon: (pmbus_core) Replace S_<PERMS> with octal values

Message ID 1555279044-25139-1-git-send-email-linux@roeck-us.net (mailing list archive)
State Accepted
Headers show
Series hwmon: (pmbus_core) Replace S_<PERMS> with octal values | expand

Commit Message

Guenter Roeck April 14, 2019, 9:57 p.m. UTC
Replace S_<PERMS> with octal values.

The conversion was done automatically with coccinelle. The semantic patches
and the scripts used to generate this commit log are available at
https://github.com/groeck/coccinelle-patches/hwmon/.

This patch does not introduce functional changes. It was verified by
compiling the old and new files and comparing text and data sizes.

Cc: Krzysztof Adamski <krzysztof.adamski@nokia.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 drivers/hwmon/pmbus/pmbus_core.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Krzysztof Adamski April 14, 2019, 10:22 p.m. UTC | #1
On Sun, Apr 14, 2019 at 02:57:24PM -0700, Guenter Roeck wrote:
>Replace S_<PERMS> with octal values.
>
>The conversion was done automatically with coccinelle. The semantic patches
>and the scripts used to generate this commit log are available at
>https://github.com/groeck/coccinelle-patches/hwmon/.

The URL is 404. blob/master/hwmon instead of just hwmon at the end would
work.

>This patch does not introduce functional changes. It was verified by
>compiling the old and new files and comparing text and data sizes.

I don't think that the sizes would change even if there was some error
introuced if it still compiles. But of course both the conccinele script
is ok and I manually verified the patch. Also, git grep "\bS_" pmbus*
does not return anything meaning all the places were converted.

>Cc: Krzysztof Adamski <krzysztof.adamski@nokia.com>
>Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>---
> drivers/hwmon/pmbus/pmbus_core.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
>index 2e2b5851139c..e2366428a9a9 100644
>--- a/drivers/hwmon/pmbus/pmbus_core.c
>+++ b/drivers/hwmon/pmbus/pmbus_core.c
>@@ -1073,7 +1073,7 @@ static int pmbus_add_boolean(struct pmbus_data *data,
> 		 name, seq, type);
> 	boolean->s1 = s1;
> 	boolean->s2 = s2;
>-	pmbus_attr_init(a, boolean->name, S_IRUGO, pmbus_show_boolean, NULL,
>+	pmbus_attr_init(a, boolean->name, 0444, pmbus_show_boolean, NULL,
> 			(reg << 16) | mask);
>
> 	return pmbus_add_attribute(data, &a->dev_attr.attr);
>@@ -1107,7 +1107,7 @@ static struct pmbus_sensor *pmbus_add_sensor(struct pmbus_data *data,
> 	sensor->update = update;
> 	sensor->convert = convert;
> 	pmbus_dev_attr_init(a, sensor->name,
>-			    readonly ? S_IRUGO : S_IRUGO | S_IWUSR,
>+			    readonly ? 0444 : 0644,
> 			    pmbus_show_sensor, pmbus_set_sensor);
>
> 	if (pmbus_add_attribute(data, &a->attr))
>@@ -1139,7 +1139,7 @@ static int pmbus_add_label(struct pmbus_data *data,
> 		snprintf(label->label, sizeof(label->label), "%s%d", lstring,
> 			 index);
>
>-	pmbus_dev_attr_init(a, label->name, S_IRUGO, pmbus_show_label, NULL);
>+	pmbus_dev_attr_init(a, label->name, 0444, pmbus_show_label, NULL);
> 	return pmbus_add_attribute(data, &a->attr);
> }
>
>-- 
>2.7.4
>

Krzysztof
Guenter Roeck April 15, 2019, 1:38 p.m. UTC | #2
On 4/14/19 3:22 PM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote:
> On Sun, Apr 14, 2019 at 02:57:24PM -0700, Guenter Roeck wrote:
>> Replace S_<PERMS> with octal values.
>>
>> The conversion was done automatically with coccinelle. The semantic patches
>> and the scripts used to generate this commit log are available at
>> https://github.com/groeck/coccinelle-patches/hwmon/.
> 
> The URL is 404. blob/master/hwmon instead of just hwmon at the end would
> work.
> 
Thanks for noticing. Looks like github changed references since I wrote
the automated scripts. Oh well. I'll drop the hwmon part from all similar
patches.

>> This patch does not introduce functional changes. It was verified by
>> compiling the old and new files and comparing text and data sizes.
> 
> I don't think that the sizes would change even if there was some error
> introuced if it still compiles. But of course both the conccinele script
> is ok and I manually verified the patch. Also, git grep "\bS_" pmbus*
> does not return anything meaning all the places were converted.
> 

It may not catch all cases, that is correct, but it does help.

Guenter

>> Cc: Krzysztof Adamski <krzysztof.adamski@nokia.com>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> ---
>> drivers/hwmon/pmbus/pmbus_core.c | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
>> index 2e2b5851139c..e2366428a9a9 100644
>> --- a/drivers/hwmon/pmbus/pmbus_core.c
>> +++ b/drivers/hwmon/pmbus/pmbus_core.c
>> @@ -1073,7 +1073,7 @@ static int pmbus_add_boolean(struct pmbus_data *data,
>> 		 name, seq, type);
>> 	boolean->s1 = s1;
>> 	boolean->s2 = s2;
>> -	pmbus_attr_init(a, boolean->name, S_IRUGO, pmbus_show_boolean, NULL,
>> +	pmbus_attr_init(a, boolean->name, 0444, pmbus_show_boolean, NULL,
>> 			(reg << 16) | mask);
>>
>> 	return pmbus_add_attribute(data, &a->dev_attr.attr);
>> @@ -1107,7 +1107,7 @@ static struct pmbus_sensor *pmbus_add_sensor(struct pmbus_data *data,
>> 	sensor->update = update;
>> 	sensor->convert = convert;
>> 	pmbus_dev_attr_init(a, sensor->name,
>> -			    readonly ? S_IRUGO : S_IRUGO | S_IWUSR,
>> +			    readonly ? 0444 : 0644,
>> 			    pmbus_show_sensor, pmbus_set_sensor);
>>
>> 	if (pmbus_add_attribute(data, &a->attr))
>> @@ -1139,7 +1139,7 @@ static int pmbus_add_label(struct pmbus_data *data,
>> 		snprintf(label->label, sizeof(label->label), "%s%d", lstring,
>> 			 index);
>>
>> -	pmbus_dev_attr_init(a, label->name, S_IRUGO, pmbus_show_label, NULL);
>> +	pmbus_dev_attr_init(a, label->name, 0444, pmbus_show_label, NULL);
>> 	return pmbus_add_attribute(data, &a->attr);
>> }
>>
>> -- 
>> 2.7.4
>>
> 
> Krzysztof
>
diff mbox series

Patch

diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
index 2e2b5851139c..e2366428a9a9 100644
--- a/drivers/hwmon/pmbus/pmbus_core.c
+++ b/drivers/hwmon/pmbus/pmbus_core.c
@@ -1073,7 +1073,7 @@  static int pmbus_add_boolean(struct pmbus_data *data,
 		 name, seq, type);
 	boolean->s1 = s1;
 	boolean->s2 = s2;
-	pmbus_attr_init(a, boolean->name, S_IRUGO, pmbus_show_boolean, NULL,
+	pmbus_attr_init(a, boolean->name, 0444, pmbus_show_boolean, NULL,
 			(reg << 16) | mask);
 
 	return pmbus_add_attribute(data, &a->dev_attr.attr);
@@ -1107,7 +1107,7 @@  static struct pmbus_sensor *pmbus_add_sensor(struct pmbus_data *data,
 	sensor->update = update;
 	sensor->convert = convert;
 	pmbus_dev_attr_init(a, sensor->name,
-			    readonly ? S_IRUGO : S_IRUGO | S_IWUSR,
+			    readonly ? 0444 : 0644,
 			    pmbus_show_sensor, pmbus_set_sensor);
 
 	if (pmbus_add_attribute(data, &a->attr))
@@ -1139,7 +1139,7 @@  static int pmbus_add_label(struct pmbus_data *data,
 		snprintf(label->label, sizeof(label->label), "%s%d", lstring,
 			 index);
 
-	pmbus_dev_attr_init(a, label->name, S_IRUGO, pmbus_show_label, NULL);
+	pmbus_dev_attr_init(a, label->name, 0444, pmbus_show_label, NULL);
 	return pmbus_add_attribute(data, &a->attr);
 }