Lines Matching defs:buf
159 temp_show(struct device *dev, struct device_attribute *devattr, char *buf)
164 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[attr->index]));
168 fan_show(struct device *dev, struct device_attribute *devattr, char *buf)
177 return sprintf(buf, "0\n");
182 return sprintf(buf, "%d\n", val);
186 fan_div_show(struct device *dev, struct device_attribute *devattr, char *buf)
192 return sprintf(buf, "0\n");
193 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[attr->index]));
198 const char *buf, size_t count)
205 int ret = kstrtol(buf, 10, &val);