浏览代码

Merge pull request #37 from fdgkhdkgh/master

Fix typo
Jim Huang 3 年之前
父节点
当前提交
40f0ff3087
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lkmpg.tex

+ 1 - 1
lkmpg.tex

@@ -853,7 +853,7 @@ That is a bad way of doing things because you will never be sure if the number y
 The answer is that you can ask the kernel to assign you a dynamic major number.
 
 If you pass a major number of 0 to \verb|register_chrdev|, the return value will be the dynamically allocated major number.
-The downside is that you ca not make a device file in advance, since you don't know what the major number will be.
+The downside is that you can not make a device file in advance, since you don't know what the major number will be.
 There are a couple of ways to do this.
 First, the driver itself can print the newly assigned number and we can make the device file by hand.
 Second, the newly registered device will have an entry in \textbf{/proc/devices}, and we can either make the device file by hand or write a shell script to read the file in and make the device file.