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:41 -0400 |
commit | 1ff9f542e5f87c299226557ce5e67a402ed4b502 (patch) | |
tree | 964bd7293fbf607f6a7a329d9fc40e0a2b798a96 /drivers/block | |
parent | ae87221d3ce49d9de1e43756da834fd0bf05a2ad (diff) |
device create: block: 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/block')
-rw-r--r-- | drivers/block/aoe/aoechr.c | 6 | ||||
-rw-r--r-- | drivers/block/paride/pg.c | 5 | ||||
-rw-r--r-- | drivers/block/paride/pt.c | 10 | ||||
-rw-r--r-- | drivers/block/pktcdvd.c | 5 |
4 files changed, 11 insertions, 15 deletions
diff --git a/drivers/block/aoe/aoechr.c b/drivers/block/aoe/aoechr.c index 1f56d2c5b7fc..200efc4d2c1e 100644 --- a/drivers/block/aoe/aoechr.c +++ b/drivers/block/aoe/aoechr.c | |||
@@ -284,9 +284,9 @@ aoechr_init(void) | |||
284 | return PTR_ERR(aoe_class); | 284 | return PTR_ERR(aoe_class); |
285 | } | 285 | } |
286 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) | 286 | for (i = 0; i < ARRAY_SIZE(chardevs); ++i) |
287 | device_create_drvdata(aoe_class, NULL, | 287 | device_create(aoe_class, NULL, |
288 | MKDEV(AOE_MAJOR, chardevs[i].minor), | 288 | MKDEV(AOE_MAJOR, chardevs[i].minor), NULL, |
289 | NULL, chardevs[i].name); | 289 | chardevs[i].name); |
290 | 290 | ||
291 | return 0; | 291 | return 0; |
292 | } | 292 | } |
diff --git a/drivers/block/paride/pg.c b/drivers/block/paride/pg.c index d731ca42f802..9dfa27163001 100644 --- a/drivers/block/paride/pg.c +++ b/drivers/block/paride/pg.c | |||
@@ -686,9 +686,8 @@ static int __init pg_init(void) | |||
686 | for (unit = 0; unit < PG_UNITS; unit++) { | 686 | for (unit = 0; unit < PG_UNITS; unit++) { |
687 | struct pg *dev = &devices[unit]; | 687 | struct pg *dev = &devices[unit]; |
688 | if (dev->present) | 688 | if (dev->present) |
689 | device_create_drvdata(pg_class, NULL, | 689 | device_create(pg_class, NULL, MKDEV(major, unit), NULL, |
690 | MKDEV(major, unit), NULL, | 690 | "pg%u", unit); |
691 | "pg%u", unit); | ||
692 | } | 691 | } |
693 | err = 0; | 692 | err = 0; |
694 | goto out; | 693 | goto out; |
diff --git a/drivers/block/paride/pt.c b/drivers/block/paride/pt.c index 673b8b2fd337..5ae229656eaa 100644 --- a/drivers/block/paride/pt.c +++ b/drivers/block/paride/pt.c | |||
@@ -979,12 +979,10 @@ static int __init pt_init(void) | |||
979 | 979 | ||
980 | for (unit = 0; unit < PT_UNITS; unit++) | 980 | for (unit = 0; unit < PT_UNITS; unit++) |
981 | if (pt[unit].present) { | 981 | if (pt[unit].present) { |
982 | device_create_drvdata(pt_class, NULL, | 982 | device_create(pt_class, NULL, MKDEV(major, unit), NULL, |
983 | MKDEV(major, unit), NULL, | 983 | "pt%d", unit); |
984 | "pt%d", unit); | 984 | device_create(pt_class, NULL, MKDEV(major, unit + 128), |
985 | device_create_drvdata(pt_class, NULL, | 985 | NULL, "pt%dn", unit); |
986 | MKDEV(major, unit + 128), NULL, | ||
987 | "pt%dn", unit); | ||
988 | } | 986 | } |
989 | goto out; | 987 | goto out; |
990 | 988 | ||
diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 0e077150568b..195ca7c720f5 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c | |||
@@ -302,9 +302,8 @@ static struct kobj_type kobj_pkt_type_wqueue = { | |||
302 | static void pkt_sysfs_dev_new(struct pktcdvd_device *pd) | 302 | static void pkt_sysfs_dev_new(struct pktcdvd_device *pd) |
303 | { | 303 | { |
304 | if (class_pktcdvd) { | 304 | if (class_pktcdvd) { |
305 | pd->dev = device_create_drvdata(class_pktcdvd, NULL, | 305 | pd->dev = device_create(class_pktcdvd, NULL, pd->pkt_dev, NULL, |
306 | pd->pkt_dev, NULL, | 306 | "%s", pd->name); |
307 | "%s", pd->name); | ||
308 | if (IS_ERR(pd->dev)) | 307 | if (IS_ERR(pd->dev)) |
309 | pd->dev = NULL; | 308 | pd->dev = NULL; |
310 | } | 309 | } |