diff mbox series

module: remove extra spaces in include/asm-generic/tlb.h

Message ID 20210303030443.176174-1-zhang.yunkai@zte.com.cn (mailing list archive)
State New, archived
Headers show
Series module: remove extra spaces in include/asm-generic/tlb.h | expand

Commit Message

Menglong Dong March 3, 2021, 3:04 a.m. UTC
From: Zhang Yunkai <zhang.yunkai@zte.com.cn>

Some typos are found out by codespell tool:

"# define" should be "#define".

Signed-off-by: Zhang Yunkai <zhang.yunkai@zte.com.cn>
---
 include/asm-generic/tlb.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Matthew Wilcox March 3, 2021, 3:11 a.m. UTC | #1
On Tue, Mar 02, 2021 at 07:04:43PM -0800, menglong8.dong@gmail.com wrote:
> From: Zhang Yunkai <zhang.yunkai@zte.com.cn>
> 
> Some typos are found out by codespell tool:
> 
> "# define" should be "#define".

Your tool is broken.  This is a style used by some to indicate nesting.
diff mbox series

Patch

diff --git a/include/asm-generic/tlb.h b/include/asm-generic/tlb.h
index 2c68a545ffa7..5be89d9ba362 100644
--- a/include/asm-generic/tlb.h
+++ b/include/asm-generic/tlb.h
@@ -23,7 +23,7 @@ 
  * the loaded mm.
  */
 #ifndef nmi_uaccess_okay
-# define nmi_uaccess_okay() true
+#define nmi_uaccess_okay() true
 #endif
 
 #ifdef CONFIG_MMU