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

Commit d9f774d4 authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky
Browse files

[S390] zcore: Fix __user annotation.

parent bf1a95a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -156,7 +156,7 @@ static int memcpy_real(void *dest, unsigned long src, size_t count)
	return rc;
	return rc;
}
}


static int memcpy_real_user(__user void *dest, unsigned long src, size_t count)
static int memcpy_real_user(void __user *dest, unsigned long src, size_t count)
{
{
	static char buf[4096];
	static char buf[4096];
	int offs = 0, size;
	int offs = 0, size;