[PATCH] powerpc/boot: remove unused min_t/max_t macros
From: Thorsten Blum
Date: Mon May 25 2026 - 05:19:22 EST
The min_t() and max_t() macros are no longer used by the boot wrapper,
remove them.
Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx>
---
arch/powerpc/boot/types.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/powerpc/boot/types.h b/arch/powerpc/boot/types.h
index 8a4c418b7260..c5085c2632bf 100644
--- a/arch/powerpc/boot/types.h
+++ b/arch/powerpc/boot/types.h
@@ -37,9 +37,6 @@ typedef s64 int64_t;
(void) (&_x == &_y); \
_x > _y ? _x : _y; })
-#define min_t(type, a, b) min(((type) a), ((type) b))
-#define max_t(type, a, b) max(((type) a), ((type) b))
-
typedef int bool;
#ifndef true