Lines Matching refs:value
32 unsigned long long value; in irst_show_wakeup_events() local
37 status = acpi_evaluate_integer(acpi->handle, "GFFS", NULL, &value); in irst_show_wakeup_events()
41 return sprintf(buf, "%lld\n", value); in irst_show_wakeup_events()
50 unsigned long value; in irst_store_wakeup_events() local
55 error = kstrtoul(buf, 0, &value); in irst_store_wakeup_events()
60 status = acpi_execute_simple_method(acpi->handle, "SFFS", value); in irst_store_wakeup_events()
78 unsigned long long value; in irst_show_wakeup_time() local
83 status = acpi_evaluate_integer(acpi->handle, "GFTV", NULL, &value); in irst_show_wakeup_time()
87 return sprintf(buf, "%lld\n", value); in irst_show_wakeup_time()
96 unsigned long value; in irst_store_wakeup_time() local
101 error = kstrtoul(buf, 0, &value); in irst_store_wakeup_time()
106 status = acpi_execute_simple_method(acpi->handle, "SFTV", value); in irst_store_wakeup_time()