From: Greg Kroah-Hartman Date: Fri, 23 Sep 2016 08:04:53 +0000 (+0200) Subject: fix typo in ppc patch X-Git-Tag: v4.4.22~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=020d4816e3cf914c85e3b72793825df382ca0788;p=thirdparty%2Fkernel%2Fstable-queue.git fix typo in ppc patch --- diff --git a/queue-4.4/ppc32-fix-copy_from_user.patch b/queue-4.4/ppc32-fix-copy_from_user.patch index aeb0c70f0b7..59e885c1cd2 100644 --- a/queue-4.4/ppc32-fix-copy_from_user.patch +++ b/queue-4.4/ppc32-fix-copy_from_user.patch @@ -33,7 +33,7 @@ Signed-off-by: Greg Kroah-Hartman - return __copy_tofrom_user((__force void __user *)to, from, - n - over) + over; - } -++ memset(to, 0, n); ++ memset(to, 0, n); return n; } diff --git a/queue-4.7/ppc32-fix-copy_from_user.patch b/queue-4.7/ppc32-fix-copy_from_user.patch index c2410e587b8..1b87babff79 100644 --- a/queue-4.7/ppc32-fix-copy_from_user.patch +++ b/queue-4.7/ppc32-fix-copy_from_user.patch @@ -33,7 +33,7 @@ Signed-off-by: Greg Kroah-Hartman - return __copy_tofrom_user((__force void __user *)to, from, - n - over) + over; - } -++ memset(to, 0, n); ++ memset(to, 0, n); return n; }