[bootlin/training-materials updates] master: sysdev: slides: replace "driver" with "module" in module parameters slide (22d2c7c1)

Luca Ceresoli luca.ceresoli at bootlin.com
Mon Feb 13 22:34:51 CET 2023


Repository : https://github.com/bootlin/training-materials
On branch  : master
Link       : https://github.com/bootlin/training-materials/commit/22d2c7c1161e24d017cdbf886edfb4382aa550f6

>---------------------------------------------------------------

commit 22d2c7c1161e24d017cdbf886edfb4382aa550f6
Author: Luca Ceresoli <luca.ceresoli at bootlin.com>
Date:   Mon Feb 13 22:34:51 2023 +0100

    sysdev: slides: replace "driver" with "module" in module parameters slide
    
    This slides describes module parameters, and parameters apply to any
    module, not only drivers.
    
    Signed-off-by: Luca Ceresoli <luca.ceresoli at bootlin.com>


>---------------------------------------------------------------

22d2c7c1161e24d017cdbf886edfb4382aa550f6
 slides/sysdev-hw-devices/sysdev-hw-devices.tex | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/slides/sysdev-hw-devices/sysdev-hw-devices.tex b/slides/sysdev-hw-devices/sysdev-hw-devices.tex
index 1d3894da..7a57589a 100644
--- a/slides/sysdev-hw-devices/sysdev-hw-devices.tex
+++ b/slides/sysdev-hw-devices/sysdev-hw-devices.tex
@@ -721,14 +721,14 @@ fat                    86016  1 vfat
     \code{modprobe usb-storage delay_use=0}
   \item \code{modprobe} supports configuration files: \code{/etc/modprobe.conf} or in any file in \code{/etc/modprobe.d/}:\\
     \code{options usb-storage delay_use=0}
-  \item Through the kernel command line, when the driver is built statically into the kernel:\\
+  \item Through the kernel command line, when the module is built statically into the kernel:\\
     \code{usb-storage.delay_use=0}
     \begin{itemize}
-    \item \code{usb-storage} is the {\em driver name}
-    \item \code{delay_use} is the {\em driver parameter name}. It
+    \item \code{usb-storage} is the {\em module name}
+    \item \code{delay_use} is the {\em module parameter name}. It
       specifies a delay before accessing a USB storage device (useful for
       rotating devices).
-    \item \code{0} is the {\em driver parameter value}
+    \item \code{0} is the {\em module parameter value}
     \end{itemize}
   \end{itemize}
 \end{frame}




More information about the training-materials-updates mailing list