Lines Matching refs:fan_handle
2671 static struct device_attribute *fan_handle, *hsf_handle; variable
2718 fan_handle = kzalloc(sizeof(struct device_attribute), GFP_KERNEL); in sony_nc_fanspeed_setup()
2719 if (!fan_handle) in sony_nc_fanspeed_setup()
2728 sysfs_attr_init(&fan_handle->attr); in sony_nc_fanspeed_setup()
2729 fan_handle->attr.name = "fanspeed"; in sony_nc_fanspeed_setup()
2730 fan_handle->attr.mode = S_IRUGO; in sony_nc_fanspeed_setup()
2731 fan_handle->show = sony_nc_fanspeed_show; in sony_nc_fanspeed_setup()
2732 fan_handle->store = NULL; in sony_nc_fanspeed_setup()
2740 result = device_create_file(&pd->dev, fan_handle); in sony_nc_fanspeed_setup()
2751 device_remove_file(&pd->dev, fan_handle); in sony_nc_fanspeed_setup()
2758 kfree(fan_handle); in sony_nc_fanspeed_setup()
2759 fan_handle = NULL; in sony_nc_fanspeed_setup()
2765 if (fan_handle) { in sony_nc_fanspeed_cleanup()
2766 device_remove_file(&pd->dev, fan_handle); in sony_nc_fanspeed_cleanup()
2767 kfree(fan_handle); in sony_nc_fanspeed_cleanup()
2768 fan_handle = NULL; in sony_nc_fanspeed_cleanup()