Source
54
54
static inline int tmp103_reg_to_mc(s8 val)
55
55
{
56
56
return val * 1000;
57
57
}
58
58
59
59
static inline u8 tmp103_mc_to_reg(int val)
60
60
{
61
61
return DIV_ROUND_CLOSEST(val, 1000);
62
62
}
63
63
64
-
static ssize_t tmp103_show_temp(struct device *dev,
65
-
struct device_attribute *attr,
66
-
char *buf)
64
+
static ssize_t tmp103_temp_show(struct device *dev,
65
+
struct device_attribute *attr, char *buf)
67
66
{
68
67
struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
69
68
struct regmap *regmap = dev_get_drvdata(dev);
70
69
unsigned int regval;
71
70
int ret;
72
71
73
72
ret = regmap_read(regmap, sda->index, ®val);
74
73
if (ret < 0)
75
74
return ret;
76
75
77
76
return sprintf(buf, "%d\n", tmp103_reg_to_mc(regval));
78
77
}
79
78
80
-
static ssize_t tmp103_set_temp(struct device *dev,
81
-
struct device_attribute *attr,
82
-
const char *buf, size_t count)
79
+
static ssize_t tmp103_temp_store(struct device *dev,
80
+
struct device_attribute *attr,
81
+
const char *buf, size_t count)
83
82
{
84
83
struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
85
84
struct regmap *regmap = dev_get_drvdata(dev);
86
85
long val;
87
86
int ret;
88
87
89
88
if (kstrtol(buf, 10, &val) < 0)
90
89
return -EINVAL;
91
90
92
91
val = clamp_val(val, -55000, 127000);
93
92
ret = regmap_write(regmap, sda->index, tmp103_mc_to_reg(val));
94
93
return ret ? ret : count;
95
94
}
96
95
97
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tmp103_show_temp, NULL ,
98
-
TMP103_TEMP_REG);
96
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, tmp103_temp, TMP103_TEMP_REG);
99
97
100
-
static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, tmp103_show_temp,
101
-
tmp103_set_temp, TMP103_TLOW_REG);
98
+
static SENSOR_DEVICE_ATTR_RW(temp1_min, tmp103_temp, TMP103_TLOW_REG);
102
99
103
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, tmp103_show_temp,
104
-
tmp103_set_temp, TMP103_THIGH_REG);
100
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, tmp103_temp, TMP103_THIGH_REG);
105
101
106
102
static struct attribute *tmp103_attrs[] = {
107
103
&sensor_dev_attr_temp1_input.dev_attr.attr,
108
104
&sensor_dev_attr_temp1_min.dev_attr.attr,
109
105
&sensor_dev_attr_temp1_max.dev_attr.attr,
110
106
NULL
111
107
};
112
108
ATTRIBUTE_GROUPS(tmp103);
113
109
114
110
static bool tmp103_regmap_is_volatile(struct device *dev, unsigned int reg)