mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 14:06:43 +07:00
09a50cc727
The FIXADDR_TOP value used by mach-bmips is in fact required whenever we run on BMIPS3300 BMIPS CPUs, and is not machine, but CPU-specific, move this constant to asm/bmips-spaces.h and use it in mach-bmips/spaces.h. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Cc: linux-mips@linux-mips.org Cc: blogic@openwrt.org Cc: cernekee@chromium.org Cc: jogo@openwrt.org Patchwork: https://patchwork.linux-mips.org/patch/9968/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
8 lines
229 B
C
8 lines
229 B
C
#ifndef __ASM_BMIPS_SPACES_H
|
|
#define __ASM_BMIPS_SPACES_H
|
|
|
|
/* Avoid collisions with system base register (SBR) region on BMIPS3300 */
|
|
#define FIXADDR_TOP ((unsigned long)(long)(int)0xff000000)
|
|
|
|
#endif /* __ASM_BMIPS_SPACES_H */
|