mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
MIPS: Fix build error seen in some configurations
commit 63238f2cc5518e1c45a3418fc0ac0f560dafe7ef upstream. The following build error is seen if CONFIG_32BIT is undefined, CONFIG_64BIT is defined, and CONFIG_MIPS32_O32 is undefined. asm/syscall.h: In function 'mips_get_syscall_arg': arch/mips/include/asm/syscall.h:32:16: error: unused variable 'usp' [-Werror=unused-variable] cc1: all warnings being treated as errors Fixes: c0ff3c53d4f9 ('MIPS: Enable HAVE_ARCH_TRACEHOOK') Signed-off-by: Guenter Roeck <linux@roeck-us.net> Acked-by: David Daney <david.daney@cavium.com> Signed-off-by: John Crispin <blogic@openwrt.org> Patchwork: http://patchwork.linux-mips.org/patch/6160/ Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bb2a1aaf7b
commit
32d9ea8058
@ -29,7 +29,7 @@ static inline long syscall_get_nr(struct task_struct *task,
|
||||
static inline unsigned long mips_get_syscall_arg(unsigned long *arg,
|
||||
struct task_struct *task, struct pt_regs *regs, unsigned int n)
|
||||
{
|
||||
unsigned long usp = regs->regs[29];
|
||||
unsigned long usp __maybe_unused = regs->regs[29];
|
||||
|
||||
switch (n) {
|
||||
case 0: case 1: case 2: case 3:
|
||||
|
Loading…
x
Reference in New Issue
Block a user