Lines Matching refs:tmon
31 struct sr_tmon tmon[SR_TMON_MAX_LIST]; member
36 struct sr_tmon *tmon = data; in sr_get_temp() local
37 struct sr_thermal *sr_thermal = tmon->priv; in sr_get_temp()
39 *temp = readl(sr_thermal->regs + SR_TMON_TEMP_BASE(tmon->tmon_id)); in sr_get_temp()
52 struct sr_tmon *tmon; in sr_thermal_probe() local
75 tmon = sr_thermal->tmon; in sr_thermal_probe()
76 for (i = 0; i < SR_TMON_MAX_LIST; i++, tmon++) { in sr_thermal_probe()
82 tmon->tmon_id = i; in sr_thermal_probe()
83 tmon->priv = sr_thermal; in sr_thermal_probe()
84 tmon->tz = devm_thermal_zone_of_sensor_register(dev, i, tmon, in sr_thermal_probe()
86 if (IS_ERR(tmon->tz)) in sr_thermal_probe()
87 return PTR_ERR(tmon->tz); in sr_thermal_probe()