spram.h 223 B

1234567891011
  1. #ifndef _MIPS_SPRAM_H
  2. #define _MIPS_SPRAM_H
  3. #if defined(CONFIG_MIPS_SPRAM)
  4. extern __init void spram_config(void);
  5. #else
  6. static inline void spram_config(void) { };
  7. #endif /* CONFIG_MIPS_SPRAM */
  8. #endif /* _MIPS_SPRAM_H */