Skip to content

Commit

Permalink
microblaze: Coding style cleanup
Browse files Browse the repository at this point in the history
No function change.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
  • Loading branch information
Michal Simek committed Mar 4, 2015
1 parent 13a7a6a commit 074fa7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/microblaze/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */

Expand Down

0 comments on commit 074fa7e

Please sign in to comment.