mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 10:33:13 +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: linux-snps-arc@lists.infradead.org Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Vineet Gupta <vgupta@kernel.org>
26 lines
550 B
C
26 lines
550 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
|
|
*
|
|
* Vineetg: May 16th, 2008
|
|
* - Current macro is now implemented as "global register" r25
|
|
*/
|
|
|
|
#ifndef _ASM_ARC_CURRENT_H
|
|
#define _ASM_ARC_CURRENT_H
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
#ifdef CONFIG_ARC_CURR_IN_REG
|
|
|
|
register struct task_struct *curr_arc asm("gp");
|
|
#define current (curr_arc)
|
|
|
|
#else
|
|
#include <asm-generic/current.h>
|
|
#endif /* ! CONFIG_ARC_CURR_IN_REG */
|
|
|
|
#endif /* ! __ASSEMBLER__ */
|
|
|
|
#endif /* _ASM_ARC_CURRENT_H */
|