Commit 2c942813 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] I2C: show adapter name in i2c-dev class directory to make it easier for userspace tools.

parent 404596e8
...@@ -124,6 +124,13 @@ static ssize_t show_dev(struct class_device *class_dev, char *buf) ...@@ -124,6 +124,13 @@ static ssize_t show_dev(struct class_device *class_dev, char *buf)
} }
static CLASS_DEVICE_ATTR(dev, S_IRUGO, show_dev, NULL); static CLASS_DEVICE_ATTR(dev, S_IRUGO, show_dev, NULL);
static ssize_t show_adapter_name(struct class_device *class_dev, char *buf)
{
struct i2c_dev *i2c_dev = to_i2c_dev(class_dev);
return sprintf(buf, "%s\n", i2c_dev->adap->name);
}
static CLASS_DEVICE_ATTR(name, S_IRUGO, show_adapter_name, NULL);
static ssize_t i2cdev_read (struct file *file, char __user *buf, size_t count, static ssize_t i2cdev_read (struct file *file, char __user *buf, size_t count,
loff_t *offset) loff_t *offset)
{ {
...@@ -459,6 +466,7 @@ static int i2cdev_attach_adapter(struct i2c_adapter *adap) ...@@ -459,6 +466,7 @@ static int i2cdev_attach_adapter(struct i2c_adapter *adap)
if (retval) if (retval)
goto error; goto error;
class_device_create_file(&i2c_dev->class_dev, &class_device_attr_dev); class_device_create_file(&i2c_dev->class_dev, &class_device_attr_dev);
class_device_create_file(&i2c_dev->class_dev, &class_device_attr_name);
return 0; return 0;
error: error:
return_i2c_dev(i2c_dev); return_i2c_dev(i2c_dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment