Source
300
300
301
301
return ret;
302
302
}
303
303
304
304
static DEVICE_ATTR_RW(pwm1);
305
305
static DEVICE_ATTR_RW(pwm1_enable);
306
306
static DEVICE_ATTR_RO(pwm1_mode);
307
307
static DEVICE_ATTR_RO(fan1_min);
308
308
static DEVICE_ATTR_RO(fan1_max);
309
309
static DEVICE_ATTR_RO(fan1_input);
310
-
static DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, fan1_input_show, set_rpm);
310
+
static DEVICE_ATTR(fan1_target, 0644, fan1_input_show, set_rpm);
311
311
312
312
static umode_t gpio_fan_is_visible(struct kobject *kobj,
313
313
struct attribute *attr, int index)
314
314
{
315
315
struct device *dev = container_of(kobj, struct device, kobj);
316
316
struct gpio_fan_data *data = dev_get_drvdata(dev);
317
317
318
318
if (index == 0 && !data->alarm_gpio)
319
319
return 0;
320
320
if (index > 0 && !data->gpios)