diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2022-01-04 19:59:47 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2022-01-31 03:17:00 +0100 |
commit | 0c9dceb9bb6dadbf340f09c69e598d4729bbb86a (patch) | |
tree | d6bdfbb3f6430b2641bfeaad594ff0864bfe6bf3 /arch/arm/include/asm | |
parent | constify struct path argument of finish_automount()/do_add_mount() (diff) | |
download | linux-0c9dceb9bb6dadbf340f09c69e598d4729bbb86a.tar.xz linux-0c9dceb9bb6dadbf340f09c69e598d4729bbb86a.zip |
asm/user.h: killed unused macros
Some of them used to be used by libbfd for a.out coredump handling.
Seeing that
* libbfd has their copies anyway
* we don't export them into userland headers
* we don't support a.out coredumps anymore
let's bury the definitions. They never had in-kernel
users anyway...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/user.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/include/asm/user.h b/arch/arm/include/asm/user.h index c799a3c49342..167d44b550f4 100644 --- a/arch/arm/include/asm/user.h +++ b/arch/arm/include/asm/user.h @@ -77,10 +77,6 @@ struct user{ struct user_fp_struct * u_fp0;/* Used by gdb to help find the values for */ /* the FP registers. */ }; -#define NBPG PAGE_SIZE -#define UPAGES 1 -#define HOST_TEXT_START_ADDR (u.start_code) -#define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG) /* * User specific VFP registers. If only VFPv2 is present, registers 16 to 31 |