Home
last modified time | relevance | path

Searched refs:uc_handle (Results 1 – 1 of 1) sorted by relevance

/kernel/linux/linux-5.10/drivers/platform/x86/
Dsony-laptop.c2799 static struct device_attribute *uc_handle; variable
2843 uc_handle = kzalloc(sizeof(struct device_attribute), GFP_KERNEL); in sony_nc_usb_charge_setup()
2844 if (!uc_handle) in sony_nc_usb_charge_setup()
2847 sysfs_attr_init(&uc_handle->attr); in sony_nc_usb_charge_setup()
2848 uc_handle->attr.name = "usb_charge"; in sony_nc_usb_charge_setup()
2849 uc_handle->attr.mode = S_IRUGO | S_IWUSR; in sony_nc_usb_charge_setup()
2850 uc_handle->show = sony_nc_usb_charge_show; in sony_nc_usb_charge_setup()
2851 uc_handle->store = sony_nc_usb_charge_store; in sony_nc_usb_charge_setup()
2853 result = device_create_file(&pd->dev, uc_handle); in sony_nc_usb_charge_setup()
2855 kfree(uc_handle); in sony_nc_usb_charge_setup()
[all …]