浏览代码

deploy: 08eee1abf1230e0fb70ce8ca97553372cdb11f8d

jserv 2 年之前
父节点
当前提交
767f83900c
共有 2 个文件被更改,包括 6 次插入6 次删除
  1. 3 3
      index.html
  2. 3 3
      lkmpg-for-ht.html

+ 3 - 3
index.html

@@ -18,7 +18,7 @@
 
 <h2 class='titleHead'>The Linux Kernel Module Programming Guide</h2>
 <div class='author'><span class='ecrm-1200'>Peter Jay Salzman, Michael Burian, Ori Pomerantz, Bob Mottram, Jim Huang</span></div><br />
-<div class='date'><span class='ecrm-1200'>April 28, 2022</span></div>
+<div class='date'><span class='ecrm-1200'>June 25, 2022</span></div>
                                                                   
 
                                                                   
@@ -534,8 +534,8 @@ needed to include <span class='obeylines-h'><span class='verb'><span class='ectt
 </code> functions, as in the first hello world example, but these days you can name those anything you
 want by using the <code>  <span class='ectt-1000'>module_init</span>
 </code> and <code>  <span class='ectt-1000'>module_exit</span>
-</code> macros. These macros are defined in <a href='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/include/linux/init.h'>include/linux/init.h</a>. The only requirement is
-that your init and cleanup functions must be defined before calling the those
+</code> macros. These macros are defined in <a href='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/include/linux/module.h'>include/linux/module.h</a>. The only requirement
+is that your init and cleanup functions must be defined before calling the those
 macros, otherwise you’ll get compilation errors. Here is an example of this
 technique:
 </p><!-- l. 1 --><p class='indent'>

+ 3 - 3
lkmpg-for-ht.html

@@ -18,7 +18,7 @@
 
 <h2 class='titleHead'>The Linux Kernel Module Programming Guide</h2>
 <div class='author'><span class='ecrm-1200'>Peter Jay Salzman, Michael Burian, Ori Pomerantz, Bob Mottram, Jim Huang</span></div><br />
-<div class='date'><span class='ecrm-1200'>April 28, 2022</span></div>
+<div class='date'><span class='ecrm-1200'>June 25, 2022</span></div>
                                                                   
 
                                                                   
@@ -534,8 +534,8 @@ needed to include <span class='obeylines-h'><span class='verb'><span class='ectt
 </code> functions, as in the first hello world example, but these days you can name those anything you
 want by using the <code>  <span class='ectt-1000'>module_init</span>
 </code> and <code>  <span class='ectt-1000'>module_exit</span>
-</code> macros. These macros are defined in <a href='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/include/linux/init.h'>include/linux/init.h</a>. The only requirement is
-that your init and cleanup functions must be defined before calling the those
+</code> macros. These macros are defined in <a href='https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/include/linux/module.h'>include/linux/module.h</a>. The only requirement
+is that your init and cleanup functions must be defined before calling the those
 macros, otherwise you’ll get compilation errors. Here is an example of this
 technique:
 </p><!-- l. 1 --><p class='indent'>