tifm: convert bus code to use dev_groups
The dev_attrs field of struct bus_type is going away soon, dev_groups should be used instead. This converts the tifm bus code to use the correct field. Cc: Alex Dubov <oakad@yahoo.com> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3736dab6e5
commit
06cf261bf4
1 changed files with 6 additions and 4 deletions
|
@ -145,15 +145,17 @@ static ssize_t type_show(struct device *dev, struct device_attribute *attr,
|
||||||
struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
|
struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
|
||||||
return sprintf(buf, "%x", sock->type);
|
return sprintf(buf, "%x", sock->type);
|
||||||
}
|
}
|
||||||
|
static DEVICE_ATTR_RO(type);
|
||||||
|
|
||||||
static struct device_attribute tifm_dev_attrs[] = {
|
static struct attribute *tifm_dev_attrs[] = {
|
||||||
__ATTR(type, S_IRUGO, type_show, NULL),
|
&dev_attr_type.attr,
|
||||||
__ATTR_NULL
|
NULL,
|
||||||
};
|
};
|
||||||
|
ATTRIBUTE_GROUPS(tifm_dev);
|
||||||
|
|
||||||
static struct bus_type tifm_bus_type = {
|
static struct bus_type tifm_bus_type = {
|
||||||
.name = "tifm",
|
.name = "tifm",
|
||||||
.dev_attrs = tifm_dev_attrs,
|
.dev_groups = tifm_dev_groups,
|
||||||
.match = tifm_bus_match,
|
.match = tifm_bus_match,
|
||||||
.uevent = tifm_uevent,
|
.uevent = tifm_uevent,
|
||||||
.probe = tifm_device_probe,
|
.probe = tifm_device_probe,
|
||||||
|
|
Loading…
Add table
Reference in a new issue