Commit 065f3348 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Kobject: add decl_subsys_name() macro for users who want to set the subsystem name

parent bd37147c
...@@ -151,6 +151,14 @@ struct subsystem _name##_subsys = { \ ...@@ -151,6 +151,14 @@ struct subsystem _name##_subsys = { \
.hotplug_ops =_hotplug_ops, \ .hotplug_ops =_hotplug_ops, \
} \ } \
} }
#define decl_subsys_name(_varname,_name,_type,_hotplug_ops) \
struct subsystem _varname##_subsys = { \
.kset = { \
.kobj = { .name = __stringify(_name) }, \
.ktype = _type, \
.hotplug_ops =_hotplug_ops, \
} \
}
/** /**
......
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