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/h8300/include | |
parent | 7a8998c9d830b59626e049a827678ba444fcf8e2 (diff) | |
download | linux-6843d8aa5b9bc61df8787801f19f538123724bfa.tar.gz linux-6843d8aa5b9bc61df8787801f19f538123724bfa.tar.bz2 linux-6843d8aa5b9bc61df8787801f19f538123724bfa.zip |
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/h8300/include')
-rw-r--r-- | arch/h8300/include/asm/flat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/include/asm/flat.h b/arch/h8300/include/asm/flat.h index 4683146f0e9e..78070f924177 100644 --- a/arch/h8300/include/asm/flat.h +++ b/arch/h8300/include/asm/flat.h @@ -17,7 +17,7 @@ #define flat_get_relocate_addr(rel) (rel & ~0x00000001) static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, - u32 *addr, u32 *persistent) + u32 *addr) { u32 val = get_unaligned((__force u32 *)rp); if (!(flags & FLAT_FLAG_GOTPIC)) |