xref: /linux/arch/mips/include/asm/spram.h (revision 0883c2c06fb5bcf5b9e008270827e63c09a88c1e)
1 #ifndef _MIPS_SPRAM_H
2 #define _MIPS_SPRAM_H
3 
4 #if defined(CONFIG_MIPS_SPRAM)
5 extern __init void spram_config(void);
6 #else
7 static inline void spram_config(void) { };
8 #endif /* CONFIG_MIPS_SPRAM */
9 
10 #endif /* _MIPS_SPRAM_H */
11