diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-13 09:09:00 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@kernel.org> | 2019-06-24 09:16:47 +1000 |
commit | 6843d8aa5b9bc61df8787801f19f538123724bfa (patch) | |
tree | 1a6635d02e73a610853fd7004ce4ea01de22c12b /arch/sh | |
parent | 7a8998c9d830b59626e049a827678ba444fcf8e2 (diff) | |
download | linux-6843d8aa5b9bc61df8787801f19f538123724bfa.tar.bz2 |
binfmt_flat: remove the persistent argument from flat_get_addr_from_rp
The argument is never used.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/include/asm/flat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/flat.h b/arch/sh/include/asm/flat.h index 1002343dd84a..fee4f25555cb 100644 --- a/arch/sh/include/asm/flat.h +++ b/arch/sh/include/asm/flat.h @@ -12,7 +12,7 @@ #include <asm/unaligned.h> static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, - u32 *addr, u32 *persistent) + u32 *addr) { *addr = get_unaligned((__force u32 *)rp); return 0; |