diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-11-19 13:54:28 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-11-19 13:54:28 -0800 |
commit | eb3479bc23fafbc408558cd8450b35f07fad2a63 (patch) | |
tree | bd74094b0456620c26f0e6a4131c7a851a9021d0 /include/linux | |
parent | 46a29dd1462198e67bf939c32a2faf4e9bf9ac63 (diff) | |
parent | ae1eff0349f2e908fc083630e8441ea6dc434dc0 (diff) |
Merge tag 'kbuild-fixes-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kbuild fixes from Masahiro Yamada:
- Fix section mismatch warning messages for riscv and loongarch
- Remove CONFIG_IA64 left-over from linux/export-internal.h
- Fix the location of the quotes for UIMAGE_NAME
- Fix a memory leak bug in Kconfig
* tag 'kbuild-fixes-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kconfig: fix memory leak from range properties
kbuild: Move the single quotes for image name
linux/export: clean up the IA-64 KSYM_FUNC macro
modpost: fix section mismatch message for RELA
Diffstat (limited to 'include/linux')
-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 |