From: Jean Delvare Date: Sun, 10 Dec 2006 20:21:31 +0000 (+0100) Subject: i2c: Use the __ATTR macro where possible X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7b77d065d1e79a9c0b1b114d059b3bc3d8206c4d;p=linux-beck.git i2c: Use the __ATTR macro where possible Signed-off-by: Jean Delvare --- diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 64f11e00651c..3e31f1d265c9 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c @@ -128,14 +128,11 @@ static ssize_t show_client_name(struct device *dev, struct device_attribute *att } /* - * We can't use the DEVICE_ATTR() macro here as we want the same filename for a - * different type of a device. So beware if the DEVICE_ATTR() macro ever - * changes, this definition will also have to change. + * We can't use the DEVICE_ATTR() macro here, as we used the same name for + * an i2c adapter attribute (above). */ -static struct device_attribute dev_attr_client_name = { - .attr = {.name = "name", .mode = S_IRUGO, .owner = THIS_MODULE }, - .show = &show_client_name, -}; +static struct device_attribute dev_attr_client_name = + __ATTR(name, S_IRUGO, &show_client_name, NULL); /* ---------------------------------------------------