forked from mirrors/linux
		
	 31205f0e00
			
		
	
	
		31205f0e00
		
	
	
	
	
		
			
			Remove a superfluous semicolon after function definition. Signed-off-by: Chengyang Fan <cy.fan@huawei.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			261 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			261 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef _MIPS_SPRAM_H
 | |
| #define _MIPS_SPRAM_H
 | |
| 
 | |
| #if defined(CONFIG_MIPS_SPRAM)
 | |
| extern __init void spram_config(void);
 | |
| #else
 | |
| static inline void spram_config(void) { }
 | |
| #endif /* CONFIG_MIPS_SPRAM */
 | |
| 
 | |
| #endif /* _MIPS_SPRAM_H */
 |