ubifs: remove redundant checks for encryption key
[platform/kernel/linux-starfive.git] / fs / binfmt_aout.c
index 64b331a..2a59139 100644 (file)
@@ -26,7 +26,7 @@
 #include <linux/coredump.h>
 #include <linux/slab.h>
 
-#include <asm/uaccess.h>
+#include <linux/uaccess.h>
 #include <asm/cacheflush.h>
 #include <asm/a.out-core.h>
 
@@ -129,7 +129,6 @@ static int set_brk(unsigned long start, unsigned long end)
        end = PAGE_ALIGN(end);
        if (end > start)
                return vm_brk(start, end - start);
-       }
        return 0;
 }