diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-06-11 17:50:53 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-06-22 14:21:06 +0200 |
commit | 7d59313f19df0b55db6b31c5e4d4e828aa77d584 (patch) | |
tree | ac3dd088fb2126f0261155646804e3d2f6033181 /include | |
parent | kbuild: generate KSYMTAB entries by modpost (diff) | |
download | linux-7d59313f19df0b55db6b31c5e4d4e828aa77d584.tar.xz linux-7d59313f19df0b55db6b31c5e4d4e828aa77d584.zip |
ia64,export.h: replace EXPORT_DATA_SYMBOL* with EXPORT_SYMBOL*
With the previous refactoring, you can always use EXPORT_SYMBOL*.
Replace two instances in ia64, then remove EXPORT_DATA_SYMBOL*.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-generic/export.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h index 0ae9f38a904c..570cd4da7210 100644 --- a/include/asm-generic/export.h +++ b/include/asm-generic/export.h @@ -8,7 +8,4 @@ */ #include <linux/export.h> -#define EXPORT_DATA_SYMBOL(name) EXPORT_SYMBOL(name) -#define EXPORT_DATA_SYMBOL_GPL(name) EXPORT_SYMBOL_GPL(name) - #endif |