 4a0f081d1b
			
		
	
	
	4a0f081d1b
	
	
	
		
			
			I made a bit of a thinko when adding Mackerel to the boards that support zboot using MMCIF. Reported-by: Magnus Damm <magnus.damm@gmail.com> Signed-off-by: Simon Horman <horms@verge.net.au> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			351 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			351 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef MMC_H
 | |
| #define MMC_H
 | |
| 
 | |
| /**************************************************
 | |
|  *
 | |
|  *		board specific settings
 | |
|  *
 | |
|  **************************************************/
 | |
| 
 | |
| #ifdef CONFIG_MACH_AP4EVB
 | |
| #include "mach/mmc-ap4eb.h"
 | |
| #elif defined(CONFIG_MACH_MACKEREL)
 | |
| #include "mach/mmc-mackerel.h"
 | |
| #else
 | |
| #error "unsupported board."
 | |
| #endif
 | |
| 
 | |
| #endif /* MMC_H */
 |