Skip to content

Commit

Permalink
m68k: fix compiler warning by properly inlining flat_set_persistent()
Browse files Browse the repository at this point in the history
This patch removes the following warning:
fs/binfmt_flat.c:752: warning: unused variable 'persistent'.
There is neither functionality change, nor extra code generated.

Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Ezequiel Garcia authored and Greg Ungerer committed May 20, 2012
1 parent 0c22faf commit f106eac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion arch/m68k/include/asm/flat.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
#define flat_get_addr_from_rp(rp, relval, flags, p) get_unaligned(rp)
#define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp)
#define flat_get_relocate_addr(rel) (rel)
#define flat_set_persistent(relval, p) 0

static inline int flat_set_persistent(unsigned long relval,
unsigned long *persistent)
{
return 0;
}

#endif /* __M68KNOMMU_FLAT_H__ */

0 comments on commit f106eac

Please sign in to comment.