Commit 24d0b416 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

device create: isdn: convert device_create to device_create_drvdata

device_create() is race-prone, so use the race-free
device_create_drvdata() instead as device_create() is going away.

Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c76d3d28
...@@ -1552,7 +1552,8 @@ static int __init capi_init(void) ...@@ -1552,7 +1552,8 @@ static int __init capi_init(void)
return PTR_ERR(capi_class); return PTR_ERR(capi_class);
} }
device_create(capi_class, NULL, MKDEV(capi_major, 0), "capi"); device_create_drvdata(capi_class, NULL, MKDEV(capi_major, 0), NULL,
"capi");
#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
if (capinc_tty_init() < 0) { if (capinc_tty_init() < 0) {
......
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