From 0ba9ecbebb81ed5dd096f210d979c72d668b93d0 Mon Sep 17 00:00:00 2001 From: "lion.chan" Date: Tue, 29 Mar 2022 04:00:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E9=99=A4=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E7=A9=BA=E6=A0=BC.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lion.chan --- .../Chapter11_Linux_Driver/c001/hello_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux/KernelDriver/HaveFunWithEmbeddedSystem/Chapter11_Linux_Driver/c001/hello_drv.c b/Linux/KernelDriver/HaveFunWithEmbeddedSystem/Chapter11_Linux_Driver/c001/hello_drv.c index 2d244f6..56909b9 100644 --- a/Linux/KernelDriver/HaveFunWithEmbeddedSystem/Chapter11_Linux_Driver/c001/hello_drv.c +++ b/Linux/KernelDriver/HaveFunWithEmbeddedSystem/Chapter11_Linux_Driver/c001/hello_drv.c @@ -11,7 +11,7 @@ static int hello_init(void) static void hello_exit(void) { - printk(KERN_ALERT "hello driver exit\n "); + printk(KERN_ALERT "hello driver exit\n"); } module_init(hello_init);