Lines Matching refs:hsf_handle
2671 static struct device_attribute *fan_handle, *hsf_handle; variable
2722 hsf_handle = kzalloc(sizeof(struct device_attribute), GFP_KERNEL); in sony_nc_fanspeed_setup()
2723 if (!hsf_handle) { in sony_nc_fanspeed_setup()
2734 sysfs_attr_init(&hsf_handle->attr); in sony_nc_fanspeed_setup()
2735 hsf_handle->attr.name = "fan_forced"; in sony_nc_fanspeed_setup()
2736 hsf_handle->attr.mode = S_IRUGO | S_IWUSR; in sony_nc_fanspeed_setup()
2737 hsf_handle->show = sony_nc_hsfan_show; in sony_nc_fanspeed_setup()
2738 hsf_handle->store = sony_nc_hsfan_store; in sony_nc_fanspeed_setup()
2744 result = device_create_file(&pd->dev, hsf_handle); in sony_nc_fanspeed_setup()
2754 kfree(hsf_handle); in sony_nc_fanspeed_setup()
2755 hsf_handle = NULL; in sony_nc_fanspeed_setup()
2770 if (hsf_handle) { in sony_nc_fanspeed_cleanup()
2771 device_remove_file(&pd->dev, hsf_handle); in sony_nc_fanspeed_cleanup()
2772 kfree(hsf_handle); in sony_nc_fanspeed_cleanup()
2773 hsf_handle = NULL; in sony_nc_fanspeed_cleanup()