diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-21 23:03:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-16 12:24:43 -0400 |
commit | a9b12619f7b6f19c871437ec24a088787a04b1de (patch) | |
tree | ff1b11e7affedccfd69fc20e14876d0821f6e555 /drivers/dca | |
parent | 91bd418fdc8526ee70a0e8f7970b584c8870ae10 (diff) |
device create: misc: convert device_create_drvdata to device_create
Now that device_create() has been audited, rename things back to the
original call to be sane.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/dca')
-rw-r--r-- | drivers/dca/dca-sysfs.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/dca/dca-sysfs.c b/drivers/dca/dca-sysfs.c index 7af4b403bd2d..bb538b9690e0 100644 --- a/drivers/dca/dca-sysfs.c +++ b/drivers/dca/dca-sysfs.c | |||
@@ -15,9 +15,8 @@ int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot) | |||
15 | struct device *cd; | 15 | struct device *cd; |
16 | static int req_count; | 16 | static int req_count; |
17 | 17 | ||
18 | cd = device_create_drvdata(dca_class, dca->cd, | 18 | cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1), NULL, |
19 | MKDEV(0, slot + 1), NULL, | 19 | "requester%d", req_count++); |
20 | "requester%d", req_count++); | ||
21 | if (IS_ERR(cd)) | 20 | if (IS_ERR(cd)) |
22 | return PTR_ERR(cd); | 21 | return PTR_ERR(cd); |
23 | return 0; | 22 | return 0; |
@@ -48,8 +47,7 @@ idr_try_again: | |||
48 | return err; | 47 | return err; |
49 | } | 48 | } |
50 | 49 | ||
51 | cd = device_create_drvdata(dca_class, dev, MKDEV(0, 0), NULL, | 50 | cd = device_create(dca_class, dev, MKDEV(0, 0), NULL, "dca%d", dca->id); |
52 | "dca%d", dca->id); | ||
53 | if (IS_ERR(cd)) { | 51 | if (IS_ERR(cd)) { |
54 | spin_lock(&dca_idr_lock); | 52 | spin_lock(&dca_idr_lock); |
55 | idr_remove(&dca_idr, dca->id); | 53 | idr_remove(&dca_idr, dca->id); |