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

Commit c71a7a38 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Fix return value for sys_ipc



Signed-off-by: default avatarJohn Linn <john.linn@xilinx.com>
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 595e8fab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ sys_ipc(uint call, int first, int second, int third, void *ptr, long fifth)
		ret = sys_shmctl(first, second, (struct shmid_ds *) ptr);
		break;
	}
	return -EINVAL;
	return ret;
}

asmlinkage int sys_vfork(struct pt_regs *regs)