aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel/entry.S
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2015-03-04 15:10:55 +0100
committerMichal Simek <michal.simek@xilinx.com>2015-03-04 15:11:55 +0100
commit074fa7e76cfff4cd1a60753ee4596510f1b87183 (patch)
tree693ceb3252b9f3b50209f5ad43661a0e659799b2 /arch/microblaze/kernel/entry.S
parentLinux 4.0-rc2 (diff)
downloadlinux-dev-074fa7e76cfff4cd1a60753ee4596510f1b87183.tar.xz
linux-dev-074fa7e76cfff4cd1a60753ee4596510f1b87183.zip
microblaze: Coding style cleanup
No function change. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/kernel/entry.S')
-rw-r--r--arch/microblaze/kernel/entry.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/entry.S b/arch/microblaze/kernel/entry.S
index 0536bc021cc6..5dcb0e1a41c4 100644
--- a/arch/microblaze/kernel/entry.S
+++ b/arch/microblaze/kernel/entry.S
@@ -349,7 +349,7 @@ C_ENTRY(_user_exception):
* should return. [note that MAKE_SYS_CALL uses label 1] */
/* See if the system call number is valid */
addi r11, r12, -__NR_syscalls;
- bgei r11,5f;
+ bgei r11, 5f;
/* Figure out which function to use for this system call. */
/* Note Microblaze barrel shift is optional, so don't rely on it */
add r12, r12, r12; /* convert num -> ptr */
@@ -411,7 +411,7 @@ C_ENTRY(ret_from_trap):
bri 1b
/* Maybe handle a signal */
-5:
+5:
andi r11, r19, _TIF_SIGPENDING | _TIF_NOTIFY_RESUME;
beqi r11, 4f; /* Signals to handle, handle them */