From: Emil Velikov Date: Tue, 17 Sep 2024 09:49:38 +0000 (+0100) Subject: shared: remove no longer used NOFAIL() macro X-Git-Tag: v34~324 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ddbc49542c43d30ce2a376852df92b4512d94efc;p=thirdparty%2Fkmod.git shared: remove no longer used NOFAIL() macro Closes: https://github.com/kmod-project/kmod/issues/60 Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/135 Signed-off-by: Lucas De Marchi --- diff --git a/shared/macro.h b/shared/macro.h index e4322138..5d08a63d 100644 --- a/shared/macro.h +++ b/shared/macro.h @@ -39,9 +39,6 @@ #define CONCATENATE(x, y) XCONCATENATE(x, y) #define UNIQ(x) CONCATENATE(x, __COUNTER__) -/* Temporaries for importing index handling */ -#define NOFAIL(x) (x) - /* Attributes */ #define _must_check_ __attribute__((warn_unused_result))