提交 8f4afc41 编写于 作者: G Greg Kroah-Hartman

Driver core: rename ktype_device

This makes it a bit more sane when trying to figure out how to clean up
the ktype mess.

Based on a larger patch from Kay Sievers

Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 adc56808
...@@ -108,7 +108,7 @@ static void device_release(struct kobject * kobj) ...@@ -108,7 +108,7 @@ static void device_release(struct kobject * kobj)
} }
} }
static struct kobj_type ktype_device = { static struct kobj_type device_ktype = {
.release = device_release, .release = device_release,
.sysfs_ops = &dev_sysfs_ops, .sysfs_ops = &dev_sysfs_ops,
}; };
...@@ -118,7 +118,7 @@ static int dev_uevent_filter(struct kset *kset, struct kobject *kobj) ...@@ -118,7 +118,7 @@ static int dev_uevent_filter(struct kset *kset, struct kobject *kobj)
{ {
struct kobj_type *ktype = get_ktype(kobj); struct kobj_type *ktype = get_ktype(kobj);
if (ktype == &ktype_device) { if (ktype == &device_ktype) {
struct device *dev = to_dev(kobj); struct device *dev = to_dev(kobj);
if (dev->uevent_suppress) if (dev->uevent_suppress)
return 0; return 0;
...@@ -405,7 +405,7 @@ static struct device_attribute devt_attr = ...@@ -405,7 +405,7 @@ static struct device_attribute devt_attr =
* devices_subsys - structure to be registered with kobject core. * devices_subsys - structure to be registered with kobject core.
*/ */
decl_subsys(devices, &ktype_device, &device_uevent_ops); decl_subsys(devices, &device_ktype, &device_uevent_ops);
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册