Searched refs:tz (Results 1 - 25 of 125) sorted by relevance

12345

/linux-master/drivers/thermal/
H A Dthermal_hwmon.h19 int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz);
20 int devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz);
21 void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz);
24 thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) argument
30 devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz) argument
36 thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) argument
H A Dthermal_trip.c12 int for_each_thermal_trip(struct thermal_zone_device *tz, argument
19 for_each_trip(tz, trip) {
29 int thermal_zone_for_each_trip(struct thermal_zone_device *tz, argument
35 mutex_lock(&tz->lock);
36 ret = for_each_thermal_trip(tz, cb, data);
37 mutex_unlock(&tz->lock);
43 int thermal_zone_get_num_trips(struct thermal_zone_device *tz) argument
45 return tz->num_trips;
51 * @tz: a pointer to a thermal zone device structure
59 * This function must be called with tz
64 __thermal_zone_set_trips(struct thermal_zone_device *tz) argument
107 __thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id, struct thermal_trip *trip) argument
118 thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id, struct thermal_trip *trip) argument
131 thermal_zone_trip_id(const struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
140 thermal_zone_trip_updated(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
147 thermal_zone_set_trip_temp(struct thermal_zone_device *tz, struct thermal_trip *trip, int temp) argument
[all...]
H A Dthermal_netlink.h21 int thermal_notify_tz_create(const struct thermal_zone_device *tz);
22 int thermal_notify_tz_delete(const struct thermal_zone_device *tz);
23 int thermal_notify_tz_enable(const struct thermal_zone_device *tz);
24 int thermal_notify_tz_disable(const struct thermal_zone_device *tz);
25 int thermal_notify_tz_trip_down(const struct thermal_zone_device *tz,
27 int thermal_notify_tz_trip_up(const struct thermal_zone_device *tz,
29 int thermal_notify_tz_trip_change(const struct thermal_zone_device *tz,
35 int thermal_notify_tz_gov_change(const struct thermal_zone_device *tz,
46 static inline int thermal_notify_tz_create(const struct thermal_zone_device *tz) argument
51 static inline int thermal_notify_tz_delete(const struct thermal_zone_device *tz) argument
56 thermal_notify_tz_enable(const struct thermal_zone_device *tz) argument
61 thermal_notify_tz_disable(const struct thermal_zone_device *tz) argument
66 thermal_notify_tz_trip_down(const struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
72 thermal_notify_tz_trip_up(const struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
78 thermal_notify_tz_trip_change(const struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
100 thermal_notify_tz_gov_change(const struct thermal_zone_device *tz, const char *name) argument
[all...]
H A Dthermal_debugfs.h8 void thermal_debug_tz_add(struct thermal_zone_device *tz);
9 void thermal_debug_tz_remove(struct thermal_zone_device *tz);
10 void thermal_debug_tz_trip_up(struct thermal_zone_device *tz,
12 void thermal_debug_tz_trip_down(struct thermal_zone_device *tz,
14 void thermal_debug_update_temp(struct thermal_zone_device *tz);
21 static inline void thermal_debug_tz_add(struct thermal_zone_device *tz) {} argument
22 static inline void thermal_debug_tz_remove(struct thermal_zone_device *tz) {} argument
23 static inline void thermal_debug_tz_trip_up(struct thermal_zone_device *tz, argument
25 static inline void thermal_debug_tz_trip_down(struct thermal_zone_device *tz, argument
27 static inline void thermal_debug_update_temp(struct thermal_zone_device *tz) {} argument
[all...]
H A Dthermal_helpers.c25 int get_tz_trend(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
29 if (tz->emul_temperature || !tz->ops.get_trend ||
30 tz->ops.get_trend(tz, trip, &trend)) {
31 if (tz->temperature > tz->last_temperature)
33 else if (tz->temperature < tz->last_temperature)
43 get_thermal_instance(struct thermal_zone_device *tz, argument
83 __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp) argument
126 thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp) argument
212 thermal_zone_get_slope(struct thermal_zone_device *tz) argument
227 thermal_zone_get_offset(struct thermal_zone_device *tz) argument
[all...]
H A Dthermal_core.c65 * @tz: a valid pointer to a struct thermal_zone_device
71 static void bind_previous_governor(struct thermal_zone_device *tz, argument
74 if (tz->governor && tz->governor->bind_to_tz) {
75 if (tz->governor->bind_to_tz(tz)) {
76 dev_err(&tz->device,
78 failed_gov_name, tz->governor->name, tz->type);
79 tz
93 thermal_set_governor(struct thermal_zone_device *tz, struct thermal_governor *new_gov) argument
195 thermal_zone_device_set_policy(struct thermal_zone_device *tz, char *policy) argument
284 thermal_zone_device_set_polling(struct thermal_zone_device *tz, unsigned long delay) argument
294 monitor_thermal_zone(struct thermal_zone_device *tz) argument
304 handle_non_critical_trips(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
311 thermal_governor_update_tz(struct thermal_zone_device *tz, enum thermal_notify_event reason) argument
320 thermal_zone_device_halt(struct thermal_zone_device *tz, bool shutdown) argument
337 thermal_zone_device_critical(struct thermal_zone_device *tz) argument
343 thermal_zone_device_critical_reboot(struct thermal_zone_device *tz) argument
348 handle_critical_trips(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
363 handle_thermal_trip(struct thermal_zone_device *tz, struct thermal_trip *trip) argument
415 update_temperature(struct thermal_zone_device *tz) argument
439 struct thermal_zone_device *tz = container_of(work, struct local
445 thermal_zone_device_init(struct thermal_zone_device *tz) argument
458 __thermal_zone_device_update(struct thermal_zone_device *tz, enum thermal_notify_event event) argument
481 thermal_zone_device_set_mode(struct thermal_zone_device *tz, enum thermal_device_mode mode) argument
513 thermal_zone_device_enable(struct thermal_zone_device *tz) argument
519 thermal_zone_device_disable(struct thermal_zone_device *tz) argument
525 thermal_zone_device_is_enabled(struct thermal_zone_device *tz) argument
532 thermal_zone_is_present(struct thermal_zone_device *tz) argument
537 thermal_zone_device_update(struct thermal_zone_device *tz, enum thermal_notify_event event) argument
584 struct thermal_zone_device *tz; local
600 struct thermal_zone_device *tz, *match = NULL; local
645 thermal_bind_cdev_to_trip(struct thermal_zone_device *tz, const struct thermal_trip *trip, struct thermal_cooling_device *cdev, unsigned long upper, unsigned long lower, unsigned int weight) argument
760 thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, int trip_index, struct thermal_cooling_device *cdev, unsigned long upper, unsigned long lower, unsigned int weight) argument
786 thermal_unbind_cdev_from_trip(struct thermal_zone_device *tz, const struct thermal_trip *trip, struct thermal_cooling_device *cdev) argument
821 thermal_zone_unbind_cooling_device(struct thermal_zone_device *tz, int trip_index, struct thermal_cooling_device *cdev) argument
834 struct thermal_zone_device *tz; local
856 print_bind_err_msg(struct thermal_zone_device *tz, struct thermal_cooling_device *cdev, int ret) argument
1168 struct thermal_zone_device *tz; local
1196 bind_tz(struct thermal_zone_device *tz) argument
1222 thermal_zone_get_crit_temp(struct thermal_zone_device *tz, int *temp) argument
1277 struct thermal_zone_device *tz; local
1460 thermal_zone_device_unregister(struct thermal_zone_device *tz) argument
1552 struct thermal_zone_device *tz; local
1569 struct thermal_zone_device *tz; local
[all...]
H A Dgov_bang_bang.c16 static int thermal_zone_trip_update(struct thermal_zone_device *tz, argument
19 int trip_index = thermal_zone_trip_id(tz, trip);
23 dev_info_once(&tz->device,
24 "Zero hysteresis value for thermal zone %s\n", tz->type);
26 dev_dbg(&tz->device, "Trip%d[temp=%d]:temp=%d:hyst=%d\n",
27 trip_index, trip->temperature, tz->temperature,
30 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
49 if (instance->target == 0 && tz->temperature >= trip->temperature)
52 tz->temperature < trip->temperature - trip->hysteresis)
68 * @tz
93 bang_bang_control(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
[all...]
H A Dgov_fair_share.c18 static int get_trip_level(struct thermal_zone_device *tz) argument
23 for_each_trip(tz, trip) {
24 if (trip->temperature >= tz->temperature)
37 trace_thermal_zone_trip(tz, thermal_zone_trip_id(tz, level_trip),
43 static long get_target_state(struct thermal_zone_device *tz, argument
46 return (long)(percentage * level * cdev->max_state) / (100 * tz->num_trips);
51 * @tz: thermal_zone_device
68 static int fair_share_throttle(struct thermal_zone_device *tz, argument
74 int cur_trip_level = get_trip_level(tz);
[all...]
H A Dgov_user_space.c18 static int user_space_bind(struct thermal_zone_device *tz) argument
27 * @tz: thermal_zone_device
32 static int notify_user_space(struct thermal_zone_device *tz, argument
38 lockdep_assert_held(&tz->lock);
40 thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s", tz->type);
41 thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d", tz->temperature);
43 thermal_zone_trip_id(tz, trip));
44 thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", tz->notify_event);
46 kobject_uevent_env(&tz->device.kobj, KOBJ_CHANGE, thermal_prop);
H A Dthermal_hwmon.c40 struct thermal_zone_device *tz; member in struct:thermal_hwmon_temp
59 struct thermal_zone_device *tz = temp->tz; local
61 ret = thermal_zone_get_temp(tz, &temperature);
77 struct thermal_zone_device *tz = temp->tz; local
81 mutex_lock(&tz->lock);
83 ret = tz->ops.get_crit_temp(tz, &temperature);
85 mutex_unlock(&tz
95 thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz) argument
116 thermal_hwmon_lookup_temp(const struct thermal_hwmon_device *hwmon, const struct thermal_zone_device *tz) argument
132 thermal_zone_crit_temp_valid(struct thermal_zone_device *tz) argument
138 thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) argument
221 thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) argument
264 devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz) argument
[all...]
H A Dthermal_sysfs.c29 struct thermal_zone_device *tz = to_thermal_zone(dev); local
31 return sprintf(buf, "%s\n", tz->type);
37 struct thermal_zone_device *tz = to_thermal_zone(dev); local
40 ret = thermal_zone_get_temp(tz, &temperature);
51 struct thermal_zone_device *tz = to_thermal_zone(dev); local
54 mutex_lock(&tz->lock);
55 enabled = thermal_zone_device_is_enabled(tz);
56 mutex_unlock(&tz->lock);
65 struct thermal_zone_device *tz = to_thermal_zone(dev); local
69 result = thermal_zone_device_enable(tz);
85 struct thermal_zone_device *tz = to_thermal_zone(dev); local
109 struct thermal_zone_device *tz = to_thermal_zone(dev); local
147 struct thermal_zone_device *tz = to_thermal_zone(dev); local
160 struct thermal_zone_device *tz = to_thermal_zone(dev); local
191 struct thermal_zone_device *tz = to_thermal_zone(dev); local
204 struct thermal_zone_device *tz = to_thermal_zone(dev); local
220 struct thermal_zone_device *tz = to_thermal_zone(dev); local
237 struct thermal_zone_device *tz = to_thermal_zone(dev); local
265 struct thermal_zone_device *tz = to_thermal_zone(dev); local
277 struct thermal_zone_device *tz = to_thermal_zone(dev); local
394 create_trip_attrs(struct thermal_zone_device *tz) argument
491 destroy_trip_attrs(struct thermal_zone_device *tz) argument
502 thermal_zone_create_device_groups(struct thermal_zone_device *tz) argument
533 thermal_zone_destroy_device_groups(struct thermal_zone_device *tz) argument
[all...]
H A Dgov_power_allocator.c107 * @tz: thermal zone we are operating in
116 static u32 estimate_sustainable_power(struct thermal_zone_device *tz) argument
118 struct power_allocator_params *params = tz->governor_data;
124 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
140 * @tz: thermal zone for which to estimate the constants
148 static void estimate_pid_constants(struct thermal_zone_device *tz, argument
170 tz->tzp->k_po = int_to_frac(sustainable_power) /
173 tz->tzp->k_pu = int_to_frac(2 * sustainable_power) /
176 k_i = tz->tzp->k_pu / 10;
177 tz
196 get_sustainable_power(struct thermal_zone_device *tz, struct power_allocator_params *params, int control_temp) argument
238 pid_controller(struct thermal_zone_device *tz, int control_temp, u32 max_allocatable_power) argument
398 allocate_power(struct thermal_zone_device *tz, int control_temp) argument
493 get_governor_trips(struct thermal_zone_device *tz, struct power_allocator_params *params) argument
536 allow_maximum_power(struct thermal_zone_device *tz, bool update) argument
579 check_power_actors(struct thermal_zone_device *tz, struct power_allocator_params *params) argument
632 power_allocator_update_tz(struct thermal_zone_device *tz, enum thermal_notify_event reason) argument
672 power_allocator_bind(struct thermal_zone_device *tz) argument
730 power_allocator_unbind(struct thermal_zone_device *tz) argument
746 power_allocator_throttle(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
[all...]
H A Dgov_step_wise.c71 static void thermal_zone_trip_update(struct thermal_zone_device *tz, argument
74 int trip_id = thermal_zone_trip_id(tz, trip);
80 trend = get_tz_trend(tz, trip);
82 if (tz->temperature >= trip->temperature) {
84 trace_thermal_zone_trip(tz, trip_id, trip->type);
87 dev_dbg(&tz->device, "Trip%d[type=%d,temp=%d]:trend=%d,throttle=%d\n",
90 list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
106 tz->passive++;
111 tz->passive--;
123 * @tz
132 step_wise_throttle(struct thermal_zone_device *tz, const struct thermal_trip *trip) argument
[all...]
H A Dthermal_core.h74 int get_tz_trend(struct thermal_zone_device *tz, const struct thermal_trip *trip);
77 get_thermal_instance(struct thermal_zone_device *tz,
89 struct thermal_zone_device *tz; member in struct:thermal_instance
100 struct list_head tz_node; /* node in tz->thermal_instances */
116 void __thermal_zone_device_update(struct thermal_zone_device *tz,
118 void thermal_zone_device_critical_reboot(struct thermal_zone_device *tz);
119 void thermal_governor_update_tz(struct thermal_zone_device *tz,
126 void __thermal_zone_set_trips(struct thermal_zone_device *tz);
127 int thermal_zone_trip_id(const struct thermal_zone_device *tz,
129 void thermal_zone_trip_updated(struct thermal_zone_device *tz,
[all...]
/linux-master/fs/isofs/
H A Dutil.c21 int year, month, day, hour, minute, second, tz; local
30 if (flag == 0) tz = p[6]; /* High sierra has no time zone */
31 else tz = 0;
39 if (tz & 0x80)
40 tz |= (-1 << 8);
67 if (-52 <= tz && tz <= 52)
68 crtime -= tz * 15 * 60;
/linux-master/tools/testing/selftests/timers/
H A Dset-tz.c1 /* Set tz value
30 struct timezone tz; local
32 tz.tz_minuteswest = min;
33 tz.tz_dsttime = dst;
35 return settimeofday(0, &tz);
40 struct timezone tz; local
43 memset(&tz, 0, sizeof(tz));
44 gettimeofday(&tv, &tz);
45 return tz
50 struct timezone tz; local
[all...]
/linux-master/tools/lib/thermal/
H A Dthermal.c34 int for_each_thermal_zone(struct thermal_zone *tz, cb_tz_t cb, void *arg) argument
38 if (!tz)
41 for (i = 0; tz[i].id != -1; i++)
42 ret |= cb(&tz[i], arg);
47 struct thermal_zone *thermal_zone_find_by_name(struct thermal_zone *tz, argument
52 if (!tz || !name)
55 for (i = 0; tz[i].id != -1; i++) {
56 if (!strcmp(tz[i].name, name))
57 return &tz[i];
63 struct thermal_zone *thermal_zone_find_by_id(struct thermal_zone *tz, in argument
78 __thermal_zone_discover(struct thermal_zone *tz, void *th) argument
91 struct thermal_zone *tz; local
[all...]
/linux-master/drivers/acpi/
H A Dthermal.c59 #define ACPI_THERMAL_TRIPS_EXCEPTION(tz, str) \
61 acpi_handle_info(tz->device->handle, \
128 static int acpi_thermal_get_temperature(struct acpi_thermal *tz) argument
133 if (!tz)
136 tz->last_temp_dk = tz->temp_dk;
138 status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
142 tz->temp_dk = tmp;
144 acpi_handle_debug(tz->device->handle, "Temperature is %lu dK\n",
145 tz
150 acpi_thermal_get_polling_frequency(struct acpi_thermal *tz) argument
169 acpi_thermal_temp(struct acpi_thermal *tz, int temp_deci_k) argument
183 active_trip_index(struct acpi_thermal *tz, struct acpi_thermal_trip *acpi_trip) argument
192 get_passive_temp(struct acpi_thermal *tz) argument
202 get_active_temp(struct acpi_thermal *tz, int index) argument
222 acpi_thermal_update_trip(struct acpi_thermal *tz, const struct thermal_trip *trip) argument
242 update_trip_devices(struct acpi_thermal *tz, struct acpi_thermal_trip *acpi_trip, int index, bool compare) argument
272 acpi_thermal_update_trip_devices(struct acpi_thermal *tz, const struct thermal_trip *trip) argument
287 struct acpi_thermal *tz; member in struct:adjust_trip_data
295 struct acpi_thermal *tz = atd->tz; local
316 acpi_queue_thermal_check(struct acpi_thermal *tz) argument
322 acpi_thermal_trips_update(struct acpi_thermal *tz, u32 event) argument
341 acpi_thermal_get_critical_trip(struct acpi_thermal *tz) argument
371 acpi_thermal_get_hot_trip(struct acpi_thermal *tz) argument
384 passive_trip_params_init(struct acpi_thermal *tz) argument
416 acpi_thermal_init_trip(struct acpi_thermal *tz, int index) argument
455 acpi_thermal_get_trip_points(struct acpi_thermal *tz) argument
474 struct acpi_thermal *tz = thermal_zone_device_priv(thermal); local
493 struct acpi_thermal *tz = thermal_zone_device_priv(thermal); local
537 struct acpi_thermal *tz = thermal_zone_device_priv(thermal); local
546 struct acpi_thermal *tz = thermal_zone_device_priv(thermal); local
632 acpi_thermal_zone_sysfs_add(struct acpi_thermal *tz) argument
650 acpi_thermal_zone_sysfs_remove(struct acpi_thermal *tz) argument
658 acpi_thermal_register_thermal_zone(struct acpi_thermal *tz, const struct thermal_trip *trip_table, unsigned int trip_count, int passive_delay) argument
698 acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz) argument
714 struct acpi_thermal *tz = acpi_driver_data(device); local
746 acpi_thermal_aml_dependency_fix(struct acpi_thermal *tz) argument
776 acpi_thermal_guess_offset(struct acpi_thermal *tz, long crit_temp) argument
786 struct acpi_thermal *tz = container_of(work, struct acpi_thermal, local
809 acpi_thermal_free_thermal_zone(struct acpi_thermal *tz) argument
825 struct acpi_thermal *tz; local
939 struct acpi_thermal *tz; local
964 struct acpi_thermal *tz; local
[all...]
/linux-master/tools/thermal/thermal-engine/
H A Dthermal-engine.c37 struct thermal_zone *tz; member in struct:thermal_data
49 static int show_temp(struct thermal_zone *tz, __maybe_unused void *arg) argument
51 thermal_cmd_get_temp(arg, tz);
53 INFO("temperature: %d\n", tz->temp);
58 static int show_governor(struct thermal_zone *tz, __maybe_unused void *arg) argument
60 thermal_cmd_get_governor(arg, tz);
62 INFO("governor: '%s'\n", tz->governor);
67 static int show_tz(struct thermal_zone *tz, __maybe_unused void *arg) argument
69 INFO("thermal zone '%s', id=%d\n", tz->name, tz
97 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
107 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
117 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
128 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
155 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
191 struct thermal_zone *tz = thermal_zone_find_by_id(td->tz, tz_id); local
[all...]
/linux-master/arch/arm64/kernel/vdso/
H A Dvgettimeofday.c10 int __kernel_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz);
20 struct timezone *tz)
22 return __cvdso_gettimeofday(tv, tz);
19 __kernel_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) argument
/linux-master/arch/s390/kernel/vdso64/
H A Dvdso64_generic.c6 struct timezone *tz)
8 return __cvdso_gettimeofday(tv, tz);
5 __s390_vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) argument
/linux-master/drivers/thermal/broadcom/
H A Dns-thermal.c17 static int ns_thermal_get_temp(struct thermal_zone_device *tz, int *temp) argument
19 void __iomem *pvtmon = thermal_zone_device_priv(tz);
20 int offset = thermal_zone_get_offset(tz);
21 int slope = thermal_zone_get_slope(tz);
48 struct thermal_zone_device *tz; local
55 tz = devm_thermal_of_zone_register(dev, 0,
58 if (IS_ERR(tz)) {
60 return PTR_ERR(tz);
/linux-master/arch/loongarch/vdso/
H A Dvgettimeofday.c15 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) argument
17 return __cvdso_gettimeofday(tv, tz);
/linux-master/include/linux/
H A Dthermal.h225 int (*bind_to_tz)(struct thermal_zone_device *tz);
226 void (*unbind_from_tz)(struct thermal_zone_device *tz);
227 int (*throttle)(struct thermal_zone_device *tz,
229 void (*update_tz)(struct thermal_zone_device *tz,
289 void devm_thermal_of_zone_unregister(struct device *dev, struct thermal_zone_device *tz);
301 struct thermal_zone_device *tz)
306 int __thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
308 int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
310 int for_each_thermal_trip(struct thermal_zone_device *tz,
313 int thermal_zone_for_each_trip(struct thermal_zone_device *tz,
300 devm_thermal_of_zone_unregister(struct device *dev, struct thermal_zone_device *tz) argument
398 thermal_zone_device_unregister(struct thermal_zone_device *tz) argument
424 thermal_zone_get_temp( struct thermal_zone_device *tz, int *temp) argument
427 thermal_zone_get_slope( struct thermal_zone_device *tz) argument
430 thermal_zone_get_offset( struct thermal_zone_device *tz) argument
434 thermal_zone_device_priv(struct thermal_zone_device *tz) argument
449 thermal_zone_device_enable(struct thermal_zone_device *tz) argument
452 thermal_zone_device_disable(struct thermal_zone_device *tz) argument
[all...]
/linux-master/arch/mips/vdso/
H A Dvgettimeofday.c30 struct timezone *tz)
32 return __cvdso_gettimeofday(tv, tz);
66 struct timezone *tz)
68 return __cvdso_gettimeofday(tv, tz);
29 __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) argument
65 __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) argument

Completed in 534 milliseconds

12345