dect
/
linux-2.6
Archived
13
0
Fork 0

DOCUMENTATION: Replace create_device() with device_create().

Fix a rather obvious typo.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Robert P. J. Day 2011-05-28 19:11:39 -04:00 committed by Greg Kroah-Hartman
parent 5464e9c721
commit b6badddccc
1 changed files with 1 additions and 1 deletions

View File

@ -104,4 +104,4 @@ Then in the module init function is would do:
And assuming 'dev' is the struct device passed into the probe hook, the driver
probe function would do something like:
create_device(&mydriver_class, dev, chrdev, &private_data, "my_name");
device_create(&mydriver_class, dev, chrdev, &private_data, "my_name");