Lines Matching refs:value
53 unsigned long long value;
61 arg.integer.value = MEMORY_ARG_MAX_BANDWIDTH;
63 &arg_list, &value);
67 if (!value)
70 *max_state = value - 1;
75 unsigned long *value)
87 arg.integer.value = MEMORY_ARG_CUR_BANDWIDTH;
93 *value = result;
117 arg.integer.value = state;
123 pr_info("Bandwidth value was %ld: status is %d\n", state, status);
236 * sensor_get_auxtrip - get the current auxtrip value from sensor
242 unsigned long long *value)
246 if ((index != 0 && index != 1) || !value)
250 NULL, value);
258 * sensor_set_auxtrip - set the new auxtrip value to sensor
263 static int sensor_set_auxtrip(acpi_handle handle, int index, int value)
281 if ((index && value < temp) || (!index && value > temp))
284 arg.integer.value = value;
290 /* do we need to check the return value of SAX0/SAX1 ? */
302 unsigned long long value;
305 result = sensor_get_auxtrip(attr->handle, idx, &value);
309 return sprintf(buf, "%lu", deci_kelvin_to_celsius(value));
328 int value;
332 if (!sscanf(buf, "%d", &value))
335 if (value < 0)
339 celsius_to_deci_kelvin(value));