summaryrefslogtreecommitdiffstats
path: root/Documentation/driver-model/device.txt
diff options
context:
space:
mode:
authorRobert P. J. Day2011-05-29 01:11:39 +0200
committerGreg Kroah-Hartman2011-06-07 19:04:22 +0200
commitb6badddcccf9d48a01e9a9b33c47922976291ab6 (patch)
tree41a961287a02388cfc29c72e86991fdf77da207f /Documentation/driver-model/device.txt
parentDOCUMENTATION: Update overview.txt in Doc/driver-model. (diff)
downloadkernel-qcow2-linux-b6badddcccf9d48a01e9a9b33c47922976291ab6.tar.gz
kernel-qcow2-linux-b6badddcccf9d48a01e9a9b33c47922976291ab6.tar.xz
kernel-qcow2-linux-b6badddcccf9d48a01e9a9b33c47922976291ab6.zip
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>
Diffstat (limited to 'Documentation/driver-model/device.txt')
-rw-r--r--Documentation/driver-model/device.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/driver-model/device.txt b/Documentation/driver-model/device.txt
index b2ff42685bcb..bdefe728a737 100644
--- a/Documentation/driver-model/device.txt
+++ b/Documentation/driver-model/device.txt
@@ -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");