diff options
author | Lukas Bulwahn <lukas.bulwahn@gmail.com> | 2023-11-10 15:07:22 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-11-17 07:24:08 +0300 |
commit | 9e0be3f50c0e8517d0238b62409c20bcb8cd8785 (patch) | |
tree | dbfb32f2af1dee310f4b2dcaf236a6b228fe6cfe /include/linux/export-internal.h | |
parent | 1c4a7587d1bbee0fd53b63af60e4244a62775f57 (diff) | |
download | linux-9e0be3f50c0e8517d0238b62409c20bcb8cd8785.tar.xz |
linux/export: clean up the IA-64 KSYM_FUNC macro
With commit cf8e8658100d ("arch: Remove Itanium (IA-64) architecture"),
there is no need to keep the IA-64 definition of the KSYM_FUNC macro.
Clean up the IA-64 definition of the KSYM_FUNC macro.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'include/linux/export-internal.h')
-rw-r--r-- | include/linux/export-internal.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/export-internal.h b/include/linux/export-internal.h index 45fca09b2319..69501e0ec239 100644 --- a/include/linux/export-internal.h +++ b/include/linux/export-internal.h @@ -50,9 +50,7 @@ " .previous" "\n" \ ) -#ifdef CONFIG_IA64 -#define KSYM_FUNC(name) @fptr(name) -#elif defined(CONFIG_PARISC) && defined(CONFIG_64BIT) +#if defined(CONFIG_PARISC) && defined(CONFIG_64BIT) #define KSYM_FUNC(name) P%name #else #define KSYM_FUNC(name) name |