diff mbox

fs/char_dev.c: fix incorrect documentation for unregister_chrdev_region

Message ID 87io99c5qu.fsf@nono.intra.net (mailing list archive)
State New, archived
Headers show

Commit Message

Partha Pratim Mukherjee July 25, 2015, 2:48 a.m. UTC
The current documentation for unregister_chrdev_region says that it
return a range of device numbers which is incorrect. Instead it
unregister a range of device numbers. Fix the documentation to make this
clear.

Signed-off-by: Partha Pratim Mukherjee <ppm.floss@gmail.com>
---
 fs/char_dev.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/fs/char_dev.c b/fs/char_dev.c
index ea06a3d..24b1425 100644
--- a/fs/char_dev.c
+++ b/fs/char_dev.c
@@ -274,7 +274,7 @@  out2:
 }
 
 /**
- * unregister_chrdev_region() - return a range of device numbers
+ * unregister_chrdev_region() - unregister a range of device numbers
  * @from: the first in the range of numbers to unregister
  * @count: the number of device numbers to unregister
  *