 55c1b0d27b
			
		
	
	
	55c1b0d27b
	
	
	
		
			
			arch/sh/boot/compressed/cache.c:8: WARNING: space prohibited between function name and open parenthesis '('
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
	
			
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			214 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			214 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| int cache_control(unsigned int command)
 | |
| {
 | |
| 	volatile unsigned int *p = (volatile unsigned int *) 0x80000000;
 | |
| 	int i;
 | |
| 
 | |
| 	for (i = 0; i < (32 * 1024); i += 32) {
 | |
| 		(void)*p;
 | |
| 		p += (32 / sizeof(int));
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| }
 |