1
0
Fork 0

Driver core: rename ktype_edd and ktype_efivar

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: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Greg Kroah-Hartman 2007-10-11 10:47:49 -06:00
parent a1148fb03f
commit e89a4116ef
2 changed files with 4 additions and 4 deletions

View File

@ -625,13 +625,13 @@ static void edd_release(struct kobject * kobj)
kfree(dev);
}
static struct kobj_type ktype_edd = {
static struct kobj_type edd_ktype = {
.release = edd_release,
.sysfs_ops = &edd_attr_ops,
.default_attrs = def_attrs,
};
static decl_subsys(edd,&ktype_edd,NULL);
static decl_subsys(edd, &edd_ktype, NULL);
/**

View File

@ -402,7 +402,7 @@ static struct attribute *def_attrs[] = {
NULL,
};
static struct kobj_type ktype_efivar = {
static struct kobj_type efivar_ktype = {
.release = efivar_release,
.sysfs_ops = &efivar_attr_ops,
.default_attrs = def_attrs,
@ -583,7 +583,7 @@ static struct subsys_attribute *efi_subsys_attrs[] = {
NULL, /* maybe more in the future? */
};
static decl_subsys(vars, &ktype_efivar, NULL);
static decl_subsys(vars, &efivar_ktype, NULL);
static decl_subsys(efi, NULL, NULL);
/*