 f106eac91e
			
		
	
	
	f106eac91e
	
	
	
		
			
			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>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			601 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			601 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * include/asm-m68knommu/flat.h -- uClinux flat-format executables
 | |
|  */
 | |
| 
 | |
| #ifndef __M68KNOMMU_FLAT_H__
 | |
| #define __M68KNOMMU_FLAT_H__
 | |
| 
 | |
| #define	flat_argvp_envp_on_stack()		1
 | |
| #define	flat_old_ram_flag(flags)		(flags)
 | |
| #define	flat_reloc_valid(reloc, size)		((reloc) <= (size))
 | |
| #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)
 | |
| 
 | |
| static inline int flat_set_persistent(unsigned long relval,
 | |
| 				      unsigned long *persistent)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| #endif /* __M68KNOMMU_FLAT_H__ */
 |