mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

While the GCC and Clang compilers already define __ASSEMBLER__ automatically when compiling assembly code, __ASSEMBLY__ is a macro that only gets defined by the Makefiles in the kernel. This can be very confusing when switching between userspace and kernelspace coding, or when dealing with uapi headers that rather should use __ASSEMBLER__ instead. So let's standardize on the __ASSEMBLER__ macro that is provided by the compilers now. This is a completely mechanical patch (done with a simple "sed -i" statement). Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Cc: linux-sh@vger.kernel.org Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
32 lines
571 B
C
32 lines
571 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifdef __ASSEMBLER__
|
|
|
|
/* kfr2r09 board specific boot code:
|
|
* converts the "partner-jet-script.txt" script into assembly
|
|
* the assembly code is the first code to be executed in the romImage
|
|
*/
|
|
|
|
#include <asm/romimage-macros.h>
|
|
#include <mach/partner-jet-setup.txt>
|
|
|
|
/* execute icbi after enabling cache */
|
|
mov.l 1f, r0
|
|
icbi @r0
|
|
|
|
/* jump to cached area */
|
|
mova 2f, r0
|
|
jmp @r0
|
|
nop
|
|
|
|
.align 2
|
|
1: .long 0xa8000000
|
|
2:
|
|
|
|
#else /* __ASSEMBLER__ */
|
|
|
|
static inline void mmcif_update_progress(int nr)
|
|
{
|
|
}
|
|
|
|
#endif /* __ASSEMBLER__ */
|