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>

authored by

Geert Uytterhoeven and committed by
Linus Torvalds
9f42ef4b a8605423

+2 -4
+1 -2
arch/blackfin/include/asm/flat.h
··· 44 44 return relval & 0x03ffffff; /* Mask out top 6 bits */ 45 45 } 46 46 47 - static inline int flat_set_persistent(unsigned long relval, 48 - unsigned long *persistent) 47 + static inline int flat_set_persistent(u32 relval, u32 *persistent) 49 48 { 50 49 int type = (relval >> 26) & 7; 51 50 if (type == 3) {
+1 -2
arch/m68k/include/asm/flat.h
··· 30 30 } 31 31 #define flat_get_relocate_addr(rel) (rel) 32 32 33 - static inline int flat_set_persistent(unsigned long relval, 34 - unsigned long *persistent) 33 + static inline int flat_set_persistent(u32 relval, u32 *persistent) 35 34 { 36 35 return 0; 37 36 }