diff options
| author | 2019-06-13 09:09:00 +0200 | |
|---|---|---|
| committer | 2019-06-24 09:16:47 +1000 | |
| commit | 6843d8aa5b9bc61df8787801f19f538123724bfa (patch) | |
| tree | 1a6635d02e73a610853fd7004ce4ea01de22c12b /include | |
| parent | binfmt_flat: provide an asm-generic/flat.h (diff) | |
| download | linux-dev-6843d8aa5b9bc61df8787801f19f538123724bfa.tar.xz linux-dev-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 'include')
| -rw-r--r-- | include/asm-generic/flat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/flat.h b/include/asm-generic/flat.h index fcd2b45c0735..1928a3596938 100644 --- a/include/asm-generic/flat.h +++ b/include/asm-generic/flat.h @@ -5,7 +5,7 @@ #include <linux/uaccess.h> static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, - u32 *addr, u32 *persistent) + u32 *addr) { #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS return copy_from_user(addr, rp, 4) ? -EFAULT : 0; |
