[PATCH] loongarch: mm: Remove unused TASK_SIZE_MIN

guoren@kernel.org posted 1 patch 2 years ago
arch/loongarch/include/asm/processor.h | 2 --
1 file changed, 2 deletions(-)
[PATCH] loongarch: mm: Remove unused TASK_SIZE_MIN
Posted by guoren@kernel.org 2 years ago
From: Guo Ren <guoren@linux.alibaba.com>

Remove TASK_SIZE_MIN because it's not used anymore.

Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Signed-off-by: Guo Ren <guoren@kernel.org>
---
 arch/loongarch/include/asm/processor.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/loongarch/include/asm/processor.h b/arch/loongarch/include/asm/processor.h
index c3bc44b5f5b3..99c80396f63a 100644
--- a/arch/loongarch/include/asm/processor.h
+++ b/arch/loongarch/include/asm/processor.h
@@ -20,7 +20,6 @@
 #ifdef CONFIG_32BIT
 
 #define TASK_SIZE	0x80000000UL
-#define TASK_SIZE_MIN	TASK_SIZE
 #define STACK_TOP_MAX	TASK_SIZE
 
 #define TASK_IS_32BIT_ADDR 1
@@ -33,7 +32,6 @@
 #define TASK_SIZE64     (0x1UL << ((cpu_vabits > VA_BITS) ? VA_BITS : cpu_vabits))
 
 #define TASK_SIZE	(test_thread_flag(TIF_32BIT_ADDR) ? TASK_SIZE32 : TASK_SIZE64)
-#define TASK_SIZE_MIN	TASK_SIZE32
 #define STACK_TOP_MAX	TASK_SIZE64
 
 #define TASK_SIZE_OF(tsk)						\
-- 
2.40.1