Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 104719
b: refs/heads/master
c: 275e64d
h: refs/heads/master
i:
  104717: 6b81d56
  104715: 785b058
  104711: e5c9efa
  104703: 070bae3
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jul 22, 2008
1 parent 23ff0a8 commit b540b10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 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: 6143b599700f7d6d7961e2de88f1486b2b19b1f2
refs/heads/master: 275e64decc01acf4d2f6b6ad1b83f1c4bd9033e5
8 changes: 5 additions & 3 deletions trunk/drivers/dca/dca-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot)
{
struct device *cd;

cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1),
"requester%d", slot);
cd = device_create_drvdata(dca_class, dca->cd,
MKDEV(0, slot + 1), NULL,
"requester%d", slot);
if (IS_ERR(cd))
return PTR_ERR(cd);
return 0;
Expand Down Expand Up @@ -46,7 +47,8 @@ int dca_sysfs_add_provider(struct dca_provider *dca, struct device *dev)
return err;
}

cd = device_create(dca_class, dev, MKDEV(0, 0), "dca%d", dca->id);
cd = device_create_drvdata(dca_class, dev, MKDEV(0, 0), NULL,
"dca%d", dca->id);
if (IS_ERR(cd)) {
spin_lock(&dca_idr_lock);
idr_remove(&dca_idr, dca->id);
Expand Down

0 comments on commit b540b10

Please sign in to comment.