device create: misc: 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>
This commit is contained in:
@ -362,9 +362,8 @@ static int init_coda_psdev(void)
|
||||
goto out_chrdev;
|
||||
}
|
||||
for (i = 0; i < MAX_CODADEVS; i++)
|
||||
device_create_drvdata(coda_psdev_class, NULL,
|
||||
MKDEV(CODA_PSDEV_MAJOR, i),
|
||||
NULL, "cfs%d", i);
|
||||
device_create(coda_psdev_class, NULL,
|
||||
MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i);
|
||||
coda_sysctl_init();
|
||||
goto out;
|
||||
|
||||
|
Reference in New Issue
Block a user