Searched refs:sensors (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/sys/powerpc/powermac/
H A Dpowermac_thermal.c80 static SLIST_HEAD(pmac_sensors, pmac_sens_le) sensors =
81 SLIST_HEAD_INITIALIZER(sensors);
109 /* Read all the sensors */
110 SLIST_FOREACH(sensor, &sensors, entries) {
144 SLIST_FOREACH(sensor, &sensors, entries) {
162 /* If there are no sensors in this zone, use the average */
165 /* No sensors at all? Use default */
216 SLIST_INSERT_HEAD(&sensors, list_entry, entries);
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_lm75/
H A Dsnmp_lm75.c57 /* Number of available sensors in the system. */
74 static TAILQ_HEAD(, lm75_snmp_sensor) sensors =
75 TAILQ_HEAD_INITIALIZER(sensors);
77 /* Ticks of the last sensors reading. */
88 "This module implements the BEGEMOT MIB for reading LM75 sensors data.",
113 "The MIB module for reading lm75 sensors data.", module);
132 while ((sensor = TAILQ_FIRST(&sensors)) != NULL) {
133 TAILQ_REMOVE(&sensors, sensor, link);
240 TAILQ_INSERT_TAIL(&sensors, sensor, link);
278 /* Traverse the sysctl(3) interface and find the active sensors
[all...]
/freebsd-11-stable/sys/arm/allwinner/
H A Daxp209.c615 const struct axp2xx_sensors *sensors; member in struct:axp2xx_softc
773 if (sc->sensors[i].id == sensor) {
782 error = axp2xx_read(dev, sc->sensors[i].value_reg, data, 2);
786 val = ((data[0] & sc->sensors[i].h_value_mask) <<
787 sc->sensors[i].h_value_shift);
788 val |= ((data[1] & sc->sensors[i].l_value_mask) <<
789 sc->sensors[i].l_value_shift);
790 val *= sc->sensors[i].value_step;
791 val += sc->sensors[i].value_convert;
1238 /* Enable ADC sensors */
[all...]
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_mcp_api.h248 struct ecore_temperature_sensor sensors[ECORE_MAX_NUM_OF_SENSORS]; member in struct:ecore_temperature_info
1237 * sensors
H A Decore_mcp.c3959 p_temp_sensor = &p_temp_info->sensors[i];

Completed in 130 milliseconds