mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 09:46:42 +07:00
a7e07b1ae5
MIPS R6, just like MIPS R2, have scratch pad storage, so add a new symbol which is selected by MIPS R2 and R6. Link: http://www.linux-mips.org/archives/linux-mips/2015-01/msg00389.html Cc: Maciej W. Rozycki <macro@linux-mips.org> Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
11 lines
223 B
C
11 lines
223 B
C
#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 */
|