Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6badddc authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Greg Kroah-Hartman
Browse files

DOCUMENTATION: Replace create_device() with device_create().



Fix a rather obvious typo.

Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5464e9c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");