Commit 7ea7ed01 authored by Tony Jones's avatar Tony Jones Committed by Greg Kroah-Hartman

aoechr: Convert from class_device to device

Signed-off-by: default avatarTony Jones <tonyj@suse.de>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Sam Hopkins <sah@coraid.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 41ca28ab
...@@ -259,9 +259,8 @@ aoechr_init(void) ...@@ -259,9 +259,8 @@ aoechr_init(void)
return PTR_ERR(aoe_class); return PTR_ERR(aoe_class);
} }
for (i = 0; i < ARRAY_SIZE(chardevs); ++i) for (i = 0; i < ARRAY_SIZE(chardevs); ++i)
class_device_create(aoe_class, NULL, device_create(aoe_class, NULL,
MKDEV(AOE_MAJOR, chardevs[i].minor), MKDEV(AOE_MAJOR, chardevs[i].minor), chardevs[i].name);
NULL, chardevs[i].name);
return 0; return 0;
} }
...@@ -272,7 +271,7 @@ aoechr_exit(void) ...@@ -272,7 +271,7 @@ aoechr_exit(void)
int i; int i;
for (i = 0; i < ARRAY_SIZE(chardevs); ++i) for (i = 0; i < ARRAY_SIZE(chardevs); ++i)
class_device_destroy(aoe_class, MKDEV(AOE_MAJOR, chardevs[i].minor)); device_destroy(aoe_class, MKDEV(AOE_MAJOR, chardevs[i].minor));
class_destroy(aoe_class); class_destroy(aoe_class);
unregister_chrdev(AOE_MAJOR, "aoechr"); unregister_chrdev(AOE_MAJOR, "aoechr");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment