diff options
author | Will Deacon <will@kernel.org> | 2019-09-12 00:00:18 +0100 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2019-09-12 15:29:46 +0200 |
commit | 2e6fcfeb9df6048a63fe0d5f7dfa39274bacbb71 (patch) | |
tree | 7ba75d3a795cd3f292f9df67a23d9317fcd45394 | |
parent | b605be658188005efd2d447e0989fd1f4aab8862 (diff) | |
download | linux-2e6fcfeb9df6048a63fe0d5f7dfa39274bacbb71.tar.bz2 |
module: Remove leftover '#undef' from export header
Commit 7290d5809571 ("module: use relative references for __ksymtab
entries") converted the '__put' #define into an assembly macro in
asm-generic/export.h but forgot to remove the corresponding '#undef'.
Remove the leftover '#undef'.
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jessica Yu <jeyu@kernel.org>
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
-rw-r--r-- | include/asm-generic/export.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h index d0912c7ac2fc..fa577978fbbd 100644 --- a/include/asm-generic/export.h +++ b/include/asm-generic/export.h @@ -55,7 +55,6 @@ __kcrctab_\name: #endif #endif .endm -#undef __put #if defined(CONFIG_TRIM_UNUSED_KSYMS) |