mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	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 */
 |