diff options
Diffstat (limited to 'tools/objtool/weak.c')
-rw-r--r-- | tools/objtool/weak.c | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/tools/objtool/weak.c b/tools/objtool/weak.c index 942ea5e8ac36..d83f607733b0 100644 --- a/tools/objtool/weak.c +++ b/tools/objtool/weak.c @@ -7,9 +7,7 @@ #include <stdbool.h> #include <errno.h> -#include "objtool.h" - -#define __weak __attribute__((weak)) +#include <objtool/objtool.h> #define UNSUPPORTED(name) \ ({ \ @@ -17,24 +15,12 @@ return ENOSYS; \ }) -const char __weak *objname; - -int __weak check(const char *_objname, bool orc) -{ - UNSUPPORTED("check subcommand"); -} - int __weak orc_dump(const char *_objname) { - UNSUPPORTED("orc"); -} - -int __weak create_orc(struct objtool_file *file) -{ - UNSUPPORTED("orc"); + UNSUPPORTED("ORC"); } -int __weak create_orc_sections(struct objtool_file *file) +int __weak orc_create(struct objtool_file *file) { - UNSUPPORTED("orc"); + UNSUPPORTED("ORC"); } |