#include "thermal_core.h"
static const char *trip_type_names[] = …;
const char *thermal_trip_type_name(enum thermal_trip_type trip_type)
{ … }
int for_each_thermal_trip(struct thermal_zone_device *tz,
int (*cb)(struct thermal_trip *, void *),
void *data)
{ … }
EXPORT_SYMBOL_GPL(…);
int thermal_zone_for_each_trip(struct thermal_zone_device *tz,
int (*cb)(struct thermal_trip *, void *),
void *data)
{ … }
EXPORT_SYMBOL_GPL(…);
int thermal_zone_get_num_trips(struct thermal_zone_device *tz)
{ … }
EXPORT_SYMBOL_GPL(…);
void thermal_zone_set_trips(struct thermal_zone_device *tz)
{ … }
int thermal_zone_get_trip(struct thermal_zone_device *tz, int trip_id,
struct thermal_trip *trip)
{ … }
EXPORT_SYMBOL_GPL(…);
int thermal_zone_trip_id(const struct thermal_zone_device *tz,
const struct thermal_trip *trip)
{ … }
void thermal_zone_trip_updated(struct thermal_zone_device *tz,
const struct thermal_trip *trip)
{ … }
void thermal_zone_set_trip_temp(struct thermal_zone_device *tz,
struct thermal_trip *trip, int temp)
{ … }
EXPORT_SYMBOL_GPL(…);