mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-29 04:10:24 +08:00
Fix typo (line 1019) (#174)
Changed "The choose of two different functions depend on whether ..." to "The choice between two different functions depends on whether ..."
This commit is contained in:
parent
b950a100f6
commit
9892214764
|
@ -1016,7 +1016,7 @@ int register_chrdev_region(dev_t from, unsigned count, const char *name);
|
||||||
int alloc_chrdev_region(dev_t *dev, unsigned baseminor, unsigned count, const char *name);
|
int alloc_chrdev_region(dev_t *dev, unsigned baseminor, unsigned count, const char *name);
|
||||||
\end{code}
|
\end{code}
|
||||||
|
|
||||||
The choose of two different functions depend on whether you know the major numbers for your device.
|
The choice between two different functions depends on whether you know the major numbers for your device.
|
||||||
Using \cpp|register_chrdev_region| if you know the device major number and \cpp|alloc_chrdev_region| if you would like to allocate a dynamicly-allocated major number.
|
Using \cpp|register_chrdev_region| if you know the device major number and \cpp|alloc_chrdev_region| if you would like to allocate a dynamicly-allocated major number.
|
||||||
|
|
||||||
Second, we should initialize the data structure \cpp|struct cdev| for our char device and associate it with the device numbers.
|
Second, we should initialize the data structure \cpp|struct cdev| for our char device and associate it with the device numbers.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user