Commit 19415c8d authored by Art Haas's avatar Art Haas Committed by Linus Torvalds

[PATCH] C99 initializer for drivers/base/class.c

parent deb86db1
...@@ -42,8 +42,8 @@ devclass_attr_store(struct kobject * kobj, struct attribute * attr, ...@@ -42,8 +42,8 @@ devclass_attr_store(struct kobject * kobj, struct attribute * attr,
} }
static struct sysfs_ops class_sysfs_ops = { static struct sysfs_ops class_sysfs_ops = {
show: devclass_attr_show, .show = devclass_attr_show,
store: devclass_attr_store, .store = devclass_attr_store,
}; };
static struct subsystem class_subsys = { static struct subsystem class_subsys = {
......
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