From 49faa1d7fd58a48772be25234b720c8ae7ada882 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 10 Sep 2025 09:06:04 +0000 Subject: [PATCH] lib/zt_common.h: Add '__used' macro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The macro will be used in the next patch and makes checkpatch happy. Reviewed-by: Mikhail Zaslonko Reviewed-by: Stefan Haberland Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- include/lib/zt_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/lib/zt_common.h b/include/lib/zt_common.h index 6a4014aa..f8257e5d 100644 --- a/include/lib/zt_common.h +++ b/include/lib/zt_common.h @@ -64,6 +64,7 @@ #define TOOLS_BINDIR STRINGIFY (S390_TOOLS_BINDIR) #define TOOLS_DATADIR STRINGIFY (S390_TOOLS_DATADIR) +#define __used __attribute__((used)) #define __noreturn __attribute__((noreturn)) #define __packed __attribute__((packed)) #define __aligned(x) __attribute__((aligned(x)))