Source
164
164
165
165
/**
166
166
* hih6130_show_temperature() - show temperature measurement value in sysfs
167
167
* @dev: device
168
168
* @attr: device attribute
169
169
* @buf: sysfs buffer (PAGE_SIZE) where measurement values are written to
170
170
*
171
171
* Will be called on read access to temp1_input sysfs attribute.
172
172
* Returns number of bytes written into buffer, negative errno on error.
173
173
*/
174
-
static ssize_t hih6130_show_temperature(struct device *dev,
174
+
static ssize_t hih6130_temperature_show(struct device *dev,
175
175
struct device_attribute *attr,
176
176
char *buf)
177
177
{
178
178
struct hih6130 *hih6130 = dev_get_drvdata(dev);
179
179
int ret;
180
180
181
181
ret = hih6130_update_measurements(dev);
182
182
if (ret < 0)
183
183
return ret;
184
184
return sprintf(buf, "%d\n", hih6130->temperature);
186
186
187
187
/**
188
188
* hih6130_show_humidity() - show humidity measurement value in sysfs
189
189
* @dev: device
190
190
* @attr: device attribute
191
191
* @buf: sysfs buffer (PAGE_SIZE) where measurement values are written to
192
192
*
193
193
* Will be called on read access to humidity1_input sysfs attribute.
194
194
* Returns number of bytes written into buffer, negative errno on error.
195
195
*/
196
-
static ssize_t hih6130_show_humidity(struct device *dev,
196
+
static ssize_t hih6130_humidity_show(struct device *dev,
197
197
struct device_attribute *attr, char *buf)
198
198
{
199
199
struct hih6130 *hih6130 = dev_get_drvdata(dev);
200
200
int ret;
201
201
202
202
ret = hih6130_update_measurements(dev);
203
203
if (ret < 0)
204
204
return ret;
205
205
return sprintf(buf, "%d\n", hih6130->humidity);
206
206
}
207
207
208
208
/* sysfs attributes */
209
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, hih6130_show_temperature,
210
-
NULL, 0);
211
-
static SENSOR_DEVICE_ATTR(humidity1_input, S_IRUGO, hih6130_show_humidity,
212
-
NULL, 0);
209
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, hih6130_temperature, 0);
210
+
static SENSOR_DEVICE_ATTR_RO(humidity1_input, hih6130_humidity, 0);
213
211
214
212
static struct attribute *hih6130_attrs[] = {
215
213
&sensor_dev_attr_temp1_input.dev_attr.attr,
216
214
&sensor_dev_attr_humidity1_input.dev_attr.attr,
217
215
NULL
218
216
};
219
217
220
218
ATTRIBUTE_GROUPS(hih6130);
221
219
222
220
static int hih6130_probe(struct i2c_client *client,