Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
v6.8
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _MIPS_SPRAM_H
 3#define _MIPS_SPRAM_H
 4
 5#if defined(CONFIG_MIPS_SPRAM)
 6extern void spram_config(void);
 7#else
 8static inline void spram_config(void) { }
 9#endif /* CONFIG_MIPS_SPRAM */
10
11#endif /* _MIPS_SPRAM_H */
v6.9.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _MIPS_SPRAM_H
 3#define _MIPS_SPRAM_H
 4
 5#if defined(CONFIG_MIPS_SPRAM)
 6extern void spram_config(void);
 7#else
 8static inline void spram_config(void) { }
 9#endif /* CONFIG_MIPS_SPRAM */
10
11#endif /* _MIPS_SPRAM_H */