From 9a9de2fc71a2688731c3467ad9fbd7eb08d39139 Mon Sep 17 00:00:00 2001 From: Andrew Kreimer Date: Mon, 9 Jun 2025 16:54:18 +0300 Subject: [PATCH] Add missing 'is' There is a missing 'is' in the sentence, add it. --- lkmpg.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lkmpg.tex b/lkmpg.tex index b8a22415..5d8eba79 100644 --- a/lkmpg.tex +++ b/lkmpg.tex @@ -1132,7 +1132,7 @@ \subsection{Writing Modules for Multiple Kernel Versions} In most cases, the device files will also remain the same. On the other hand, the internal interfaces within the kernel can and do change between versions. There are differences between different kernel versions, and if you want to support multiple kernel versions, you will find yourself having to code conditional compilation directives. -The way to do this to compare the macro \cpp|LINUX_VERSION_CODE| to the macro \cpp|KERNEL_VERSION|. +The way to do this is to compare the macro \cpp|LINUX_VERSION_CODE| to the macro \cpp|KERNEL_VERSION|. In version \verb|a.b.c| of the kernel, the value of this macro would be \(2^{16}a+2^{8}b+c\). \section{The /proc File System}