]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/dca/dca-sysfs.c
device create: misc: convert device_create_drvdata to device_create
[linux-2.6-omap-h63xx.git] / drivers / dca / dca-sysfs.c
index 3d47e9d8e34fcb84aaa2990e1f0eb667372ad492..bb538b9690e08186ae6c7d73240901b95b6b9ee3 100644 (file)
@@ -15,7 +15,7 @@ int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot)
        struct device *cd;
        static int req_count;
 
-       cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1),
+       cd = device_create(dca_class, dca->cd, MKDEV(0, slot + 1), NULL,
                           "requester%d", req_count++);
        if (IS_ERR(cd))
                return PTR_ERR(cd);
@@ -47,7 +47,7 @@ idr_try_again:
                return err;
        }
 
-       cd = device_create(dca_class, dev, MKDEV(0, 0), "dca%d", dca->id);
+       cd = device_create(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);