summaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio/light
diff options
context:
space:
mode:
authorJonathan Cameron2010-05-04 15:43:12 +0200
committerGreg Kroah-Hartman2010-05-11 20:36:06 +0200
commite9124afad3d419213b1cd80e40bcf65445ba11f9 (patch)
tree4dd9d39142a2836287aa057ff6d2b65abb1ff278 /drivers/staging/iio/light
parentstaging:iio:ring_sw: Fix incorrect test on successful read of last value, cau... (diff)
downloadkernel-qcow2-linux-e9124afad3d419213b1cd80e40bcf65445ba11f9.tar.gz
kernel-qcow2-linux-e9124afad3d419213b1cd80e40bcf65445ba11f9.tar.xz
kernel-qcow2-linux-e9124afad3d419213b1cd80e40bcf65445ba11f9.zip
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>
Diffstat (limited to 'drivers/staging/iio/light')
-rw-r--r--drivers/staging/iio/light/tsl2563.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/staging/iio/light/tsl2563.c b/drivers/staging/iio/light/tsl2563.c
index 911c898c30e7..da3d51c52c7c 100644
--- a/drivers/staging/iio/light/tsl2563.c
+++ b/drivers/staging/iio/light/tsl2563.c
@@ -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
};