aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/asm-generic/Kbuild.asm1
-rw-r--r--include/linux/Kbuild2
-rw-r--r--include/linux/elf.h2
-rw-r--r--include/linux/elfcore.h2
4 files changed, 5 insertions, 2 deletions
diff --git a/include/asm-generic/Kbuild.asm b/include/asm-generic/Kbuild.asm
index 1f8c3df1c26..d00fd67e636 100644
--- a/include/asm-generic/Kbuild.asm
+++ b/include/asm-generic/Kbuild.asm
@@ -29,5 +29,4 @@ unifdef-y += types.h
29unifdef-y += unistd.h 29unifdef-y += unistd.h
30 30
31# These probably shouldn't be exported 31# These probably shouldn't be exported
32unifdef-y += elf.h
33unifdef-y += page.h 32unifdef-y += page.h
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 6723bc973da..0d4f55d97ae 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -60,7 +60,6 @@ header-y += dqblk_v2.h
60header-y += dqblk_xfs.h 60header-y += dqblk_xfs.h
61header-y += efs_fs_sb.h 61header-y += efs_fs_sb.h
62header-y += elf-fdpic.h 62header-y += elf-fdpic.h
63header-y += elf.h
64header-y += elf-em.h 63header-y += elf-em.h
65header-y += fadvise.h 64header-y += fadvise.h
66header-y += fd.h 65header-y += fd.h
@@ -190,6 +189,7 @@ unifdef-y += dccp.h
190unifdef-y += dirent.h 189unifdef-y += dirent.h
191unifdef-y += dlm.h 190unifdef-y += dlm.h
192unifdef-y += edd.h 191unifdef-y += edd.h
192unifdef-y += elf.h
193unifdef-y += elfcore.h 193unifdef-y += elfcore.h
194unifdef-y += errno.h 194unifdef-y += errno.h
195unifdef-y += errqueue.h 195unifdef-y += errqueue.h
diff --git a/include/linux/elf.h b/include/linux/elf.h
index 7ceb24d87c1..ed98c761bae 100644
--- a/include/linux/elf.h
+++ b/include/linux/elf.h
@@ -3,7 +3,9 @@
3 3
4#include <linux/types.h> 4#include <linux/types.h>
5#include <linux/elf-em.h> 5#include <linux/elf-em.h>
6#ifdef __KERNEL__
6#include <asm/elf.h> 7#include <asm/elf.h>
8#endif
7 9
8struct file; 10struct file;
9 11
diff --git a/include/linux/elfcore.h b/include/linux/elfcore.h
index 0432de7d470..5ca54d77079 100644
--- a/include/linux/elfcore.h
+++ b/include/linux/elfcore.h
@@ -16,7 +16,9 @@ struct elf_siginfo
16 int si_errno; /* errno */ 16 int si_errno; /* errno */
17}; 17};
18 18
19#ifdef __KERNEL__
19#include <asm/elf.h> 20#include <asm/elf.h>
21#endif
20 22
21#ifndef __KERNEL__ 23#ifndef __KERNEL__
22typedef elf_greg_t greg_t; 24typedef elf_greg_t greg_t;