|
@@ -15,9 +15,8 @@ int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot)
|
|
struct device *cd;
|
|
struct device *cd;
|
|
static int req_count;
|
|
static int req_count;
|
|
|
|
|
|
- cd = device_create_drvdata(dca_class, dca->cd,
|
|
|
|
- MKDEV(0, slot + 1), NULL,
|
|
|
|
- "requester%d", req_count++);
|
|
|
|
|
|
+ cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1), NULL,
|
|
|
|
+ "requester%d", req_count++);
|
|
if (IS_ERR(cd))
|
|
if (IS_ERR(cd))
|
|
return PTR_ERR(cd);
|
|
return PTR_ERR(cd);
|
|
return 0;
|
|
return 0;
|
|
@@ -48,8 +47,7 @@ idr_try_again:
|
|
return err;
|
|
return err;
|
|
}
|
|
}
|
|
|
|
|
|
- cd = device_create_drvdata(dca_class, dev, MKDEV(0, 0), NULL,
|
|
|
|
- "dca%d", dca->id);
|
|
|
|
|
|
+ cd = device_create(dca_class, dev, MKDEV(0, 0), NULL, "dca%d", dca->id);
|
|
if (IS_ERR(cd)) {
|
|
if (IS_ERR(cd)) {
|
|
spin_lock(&dca_idr_lock);
|
|
spin_lock(&dca_idr_lock);
|
|
idr_remove(&dca_idr, dca->id);
|
|
idr_remove(&dca_idr, dca->id);
|