Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68004
b: refs/heads/master
c: e89a411
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 12, 2007
1 parent 01228e3 commit 80681fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a1148fb03f3c5d0bb5e6641234c2251a15741361
refs/heads/master: e89a4116ef345cf10c21f722dd1d8bfa9b7c7d58
4 changes: 2 additions & 2 deletions trunk/drivers/firmware/edd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);


/**
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/firmware/efivars.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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);

/*
Expand Down

0 comments on commit 80681fe

Please sign in to comment.