misc: genwqe: Rudimentary typo fixes
[linux-2.6-microblaze.git] / mm / mprotect.c
index ab70902..94188df 100644 (file)
@@ -617,10 +617,11 @@ static int do_mprotect_pkey(unsigned long start, size_t len,
                if (tmp > end)
                        tmp = end;
 
-               if (vma->vm_ops && vma->vm_ops->mprotect)
+               if (vma->vm_ops && vma->vm_ops->mprotect) {
                        error = vma->vm_ops->mprotect(vma, nstart, tmp, newflags);
-               if (error)
-                       goto out;
+                       if (error)
+                               goto out;
+               }
 
                error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
                if (error)