Home
last modified time | relevance | path

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

/linux/drivers/power/reset/
H A Dreboot-mode.c47 struct mode_info *sysfs_info; in reboot_modes_show() local
54 list_for_each_entry(sysfs_info, &priv->head, list) in reboot_modes_show()
55 size += sysfs_emit_at(buf, size, "%s ", sysfs_info->mode); in reboot_modes_show()
121 struct mode_info *sysfs_info; in reboot_mode_create_device() local
132 sysfs_info = kzalloc_obj(*sysfs_info); in reboot_mode_create_device()
133 if (!sysfs_info) { in reboot_mode_create_device()
138 sysfs_info->mode = kstrdup_const(info->mode, GFP_KERNEL); in reboot_mode_create_device()
139 if (!sysfs_info->mode) { in reboot_mode_create_device()
140 kfree(sysfs_info); in reboot_mode_create_device()
145 list_add_tail(&sysfs_info->list, &priv->head); in reboot_mode_create_device()