diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2018-01-13 19:02:46 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2018-01-15 17:42:34 -0600 |
commit | 8bc9e33848f7491d124e11b2c79430d45e0d8545 (patch) | |
tree | 36ffe30ef2bacc464997acfb10bb91ace5934810 /arch/frv | |
parent | ac54058d778b766dbdf576f5e30122652378ae98 (diff) | |
download | op-kernel-dev-8bc9e33848f7491d124e11b2c79430d45e0d8545.zip op-kernel-dev-8bc9e33848f7491d124e11b2c79430d45e0d8545.tar.gz |
signal/frv: Move the frv specific si_codes to asm-generic/siginfo.h
Having si_codes in many different files simply encourages duplicate definitions
that can cause problems later. To avoid that merce the frv specific si_codes
into uapi/asm-generic/siginfo.h
This allows the removal of arch/frv/uapi/include/asm/siginfo.h as the last
last meaningful definition it held was FPE_MDAOVF.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/include/uapi/asm/Kbuild | 1 | ||||
-rw-r--r-- | arch/frv/include/uapi/asm/siginfo.h | 13 |
2 files changed, 1 insertions, 13 deletions
diff --git a/arch/frv/include/uapi/asm/Kbuild b/arch/frv/include/uapi/asm/Kbuild index 14a2e9a..5354b0f 100644 --- a/arch/frv/include/uapi/asm/Kbuild +++ b/arch/frv/include/uapi/asm/Kbuild @@ -1,4 +1,5 @@ # UAPI Header export list include include/uapi/asm-generic/Kbuild.asm +generic-y += siginfo.h generic-y += bpf_perf_event.h diff --git a/arch/frv/include/uapi/asm/siginfo.h b/arch/frv/include/uapi/asm/siginfo.h deleted file mode 100644 index 4c8c975..0000000 --- a/arch/frv/include/uapi/asm/siginfo.h +++ /dev/null @@ -1,13 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ -#ifndef _ASM_SIGINFO_H -#define _ASM_SIGINFO_H - -#include <linux/types.h> -#include <asm-generic/siginfo.h> - -#define FPE_MDAOVF 9 /* media overflow */ -#undef NSIGFPE -#define NSIGFPE 9 - -#endif - |