Message ID | 20161109171614.9730-2-clemens.gruber@pqgruber.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On Wed, Nov 09, 2016 at 06:16:14PM +0100, Clemens Gruber wrote: > Replace S_IRUGO with the better readable 0444. > This fixes a checkpatch warning. > > Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Applied to -next. Guenter > --- > drivers/hwmon/mcp3021.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/hwmon/mcp3021.c b/drivers/hwmon/mcp3021.c > index 81f4b7f..3a007ab 100644 > --- a/drivers/hwmon/mcp3021.c > +++ b/drivers/hwmon/mcp3021.c > @@ -102,7 +102,7 @@ static ssize_t show_in_input(struct device *dev, struct device_attribute *attr, > return sprintf(buf, "%d\n", in_input); > } > > -static DEVICE_ATTR(in0_input, S_IRUGO, show_in_input, NULL); > +static DEVICE_ATTR(in0_input, 0444, show_in_input, NULL); > > static int mcp3021_probe(struct i2c_client *client, > const struct i2c_device_id *id) -- To unsubscribe from this list: send the line "unsubscribe linux-hwmon" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/hwmon/mcp3021.c b/drivers/hwmon/mcp3021.c index 81f4b7f..3a007ab 100644 --- a/drivers/hwmon/mcp3021.c +++ b/drivers/hwmon/mcp3021.c @@ -102,7 +102,7 @@ static ssize_t show_in_input(struct device *dev, struct device_attribute *attr, return sprintf(buf, "%d\n", in_input); } -static DEVICE_ATTR(in0_input, S_IRUGO, show_in_input, NULL); +static DEVICE_ATTR(in0_input, 0444, show_in_input, NULL); static int mcp3021_probe(struct i2c_client *client, const struct i2c_device_id *id)
Replace S_IRUGO with the better readable 0444. This fixes a checkpatch warning. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> --- drivers/hwmon/mcp3021.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)