spram.h 262 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _MIPS_SPRAM_H
  3. #define _MIPS_SPRAM_H
  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. #endif /* _MIPS_SPRAM_H */