Source
271
271
bool is_string = is_string_attr(type, attr);
272
272
273
273
/* The attribute is invisible if there is no template string */
274
274
if (!template)
275
275
return ERR_PTR(-ENOENT);
276
276
277
277
mode = ops->is_visible(drvdata, type, attr, index);
278
278
if (!mode)
279
279
return ERR_PTR(-ENOENT);
280
280
281
-
if ((mode & S_IRUGO) && ((is_string && !ops->read_string) ||
281
+
if ((mode & 0444) && ((is_string && !ops->read_string) ||
282
282
(!is_string && !ops->read)))
283
283
return ERR_PTR(-EINVAL);
284
-
if ((mode & S_IWUGO) && !ops->write)
284
+
if ((mode & 0222) && !ops->write)
285
285
return ERR_PTR(-EINVAL);
286
286
287
287
hattr = devm_kzalloc(dev, sizeof(*hattr), GFP_KERNEL);
288
288
if (!hattr)
289
289
return ERR_PTR(-ENOMEM);
290
290
291
291
if (type == hwmon_chip) {
292
292
name = template;
293
293
} else {
294
294
scnprintf(hattr->name, sizeof(hattr->name), template,