Merge pull request #109 from YLowy/master

Fix typo
This commit is contained in:
Jim Huang 2021-09-19 20:47:19 +08:00 committed by GitHub
commit 81a1e88c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -869,7 +869,7 @@ You do this by using the \cpp|register_chrdev| function, defined by \src{include
int register_chrdev(unsigned int major, const char *name, struct file_operations *fops); int register_chrdev(unsigned int major, const char *name, struct file_operations *fops);
\end{code} \end{code}
where unsigned int major is the major number you want to request, \cpp|const char *name| is the name of the device as it will appear in \verb|/proc/devices| and \cpp|struct file_operations *fops| is a pointer to the \cpp|file_operations| table for your driver. Where unsigned int major is the major number you want to request, \cpp|const char *name| is the name of the device as it will appear in \verb|/proc/devices| and \cpp|struct file_operations *fops| is a pointer to the \cpp|file_operations| table for your driver.
A negative return value means the registration failed. Note that we didn't pass the minor number to \cpp|register_chrdev|. A negative return value means the registration failed. Note that we didn't pass the minor number to \cpp|register_chrdev|.
That is because the kernel doesn't care about the minor number; only our driver uses it. That is because the kernel doesn't care about the minor number; only our driver uses it.