staging:iio:tsl2563 add a name attribute under the iio
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
8474ddd7cb
commit
e9124afad3
1 changed files with 12 additions and 0 deletions
|
@ -598,12 +598,24 @@ static DEVICE_ATTR(calib0, S_IRUGO | S_IWUSR,
|
|||
static DEVICE_ATTR(calib1, S_IRUGO | S_IWUSR,
|
||||
tsl2563_calib1_show, tsl2563_calib1_store);
|
||||
|
||||
static ssize_t tsl2563_show_name(struct device *dev,
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct iio_dev *indio_dev = dev_get_drvdata(dev);
|
||||
struct tsl2563_chip *chip = indio_dev->dev_data;
|
||||
return sprintf(buf, "%s\n", chip->client->name);
|
||||
}
|
||||
|
||||
DEVICE_ATTR(name, S_IRUGO, tsl2563_show_name, NULL);
|
||||
|
||||
static struct attribute *tsl2563_attributes[] = {
|
||||
&dev_attr_adc0.attr,
|
||||
&dev_attr_adc1.attr,
|
||||
&dev_attr_illuminance0_input.attr,
|
||||
&dev_attr_calib0.attr,
|
||||
&dev_attr_calib1.attr,
|
||||
&dev_attr_name.attr,
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue