Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 65f8ebe0 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] Compat: Fix build if CONFIG_SYSVIPC is disabled.

parent 2c35f813
Loading
Loading
Loading
Loading
+12 −0
Original line number Original line Diff line number Diff line
@@ -311,6 +311,8 @@ asmlinkage int sys32_sched_rr_get_interval(compat_pid_t pid,
	return ret;
	return ret;
}
}


#ifdef CONFIG_SYSVIPC

asmlinkage long
asmlinkage long
sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth)
sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth)
{
{
@@ -368,6 +370,16 @@ sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth)
	return err;
	return err;
}
}


#else

asmlinkage long
sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth)
{
	return -ENOSYS;
}

#endif /* CONFIG_SYSVIPC */

#ifdef CONFIG_MIPS32_N32
#ifdef CONFIG_MIPS32_N32
asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, u32 arg)
asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, u32 arg)
{
{