diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2017-07-16 13:57:28 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-07-16 09:24:06 -0700 |
commit | 9f42ef4bc26b83bd33feb9a9fa55e25e5752a495 (patch) | |
tree | b3683fecc85efc1159d3d5410a8768c3a81a0e80 /arch/m68k | |
parent | a86054236d356b973b360c43c4d43fef6555db13 (diff) | |
download | linux-9f42ef4bc26b83bd33feb9a9fa55e25e5752a495.tar.gz linux-9f42ef4bc26b83bd33feb9a9fa55e25e5752a495.tar.bz2 linux-9f42ef4bc26b83bd33feb9a9fa55e25e5752a495.zip |
blackfin, m68k: Fix flat_set_persistent() for unsigned long to u32 changes
Several variables had their types changed from unsigned long to u32, but
the arch-specific implementations of flat_set_persistent() weren't
updated, leading to compiler warnings on blackfin and m68k:
fs/binfmt_flat.c: In function ‘load_flat_file’:
fs/binfmt_flat.c:799: warning: passing argument 2 of ‘flat_set_persistent’ from incompatible pointer type
Fixes: 468138d78510688f ("binfmt_flat: flat_{get,put}_addr_from_rp() should be able to fail")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/flat.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/m68k/include/asm/flat.h b/arch/m68k/include/asm/flat.h index 48b62790fe70..b2a41f5b3890 100644 --- a/arch/m68k/include/asm/flat.h +++ b/arch/m68k/include/asm/flat.h @@ -30,8 +30,7 @@ static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel) } #define flat_get_relocate_addr(rel) (rel) -static inline int flat_set_persistent(unsigned long relval, - unsigned long *persistent) +static inline int flat_set_persistent(u32 relval, u32 *persistent) { return 0; } |