[bootlin/training-materials updates] master: kernel: interrupts: Use the ksym macro when defining a kernel type (fdf283f5)

Miquel Raynal miquel.raynal at bootlin.com
Tue Jun 22 20:46:58 CEST 2021


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

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

commit fdf283f5be53a00b7b5eeadb265345e37e09f658
Author: Miquel Raynal <miquel.raynal at bootlin.com>
Date:   Tue Jun 22 18:41:34 2021 +0200

    kernel: interrupts: Use the ksym macro when defining a kernel type
    
    Signed-off-by: Miquel Raynal <miquel.raynal at bootlin.com>


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

fdf283f5be53a00b7b5eeadb265345e37e09f658
 labs/kernel-serial-interrupt/kernel-serial-interrupt.tex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/labs/kernel-serial-interrupt/kernel-serial-interrupt.tex b/labs/kernel-serial-interrupt/kernel-serial-interrupt.tex
index daf82ced..126a356a 100644
--- a/labs/kernel-serial-interrupt/kernel-serial-interrupt.tex
+++ b/labs/kernel-serial-interrupt/kernel-serial-interrupt.tex
@@ -131,7 +131,7 @@ Now, what happens in our \code{read()} function if no character is
 available for reading (i.e, if \code{buf_wr} is equal to
 \code{buf_rd})? We should put the process to sleep!
 
-To do so, add a \code{wait_queue_head_t} wait queue to our
+To do so, add a \ksym{wait_queue_head_t} wait queue to our
 \code{serial_dev} structure, named for example \code{wait}. In the
 \code{read()} function, keep things simple by directly using
 \kfunc{wait_event_interruptible} right from the start, to wait until




More information about the training-materials-updates mailing list