Skip to content

Commit 2b6d718

Browse files
maciej-w-rozyckitsbogend
authored andcommitted
MIPS: Fix whitespace damage in r4k_wait from VS timer fix
Remove stray spaces/tabs introduced with commit 5665112 ("MIPS: Fix idle VS timer enqueue") and add missing indentation for a branch delay slot. Signed-off-by: Maciej W. Rozycki <macro@orcam.me.uk> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
1 parent 263e954 commit 2b6d718

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

arch/mips/kernel/genex.S

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ handle_vcei:
109109
.align 5
110110
LEAF(r4k_wait)
111111
/* Keep the ISA bit clear for calculations on local labels here. */
112-
0: .fill 0
112+
0: .fill 0
113113
/* Start of idle interrupt region. */
114114
local_irq_enable
115115
/*
@@ -121,7 +121,7 @@ LEAF(r4k_wait)
121121
*/
122122
1: .fill 0
123123
/* The R2 EI/EHB sequence takes 8 bytes, otherwise pad up. */
124-
.if 1b - 0b > 32
124+
.if 1b - 0b > 32
125125
.error "overlong idle interrupt region"
126126
.elseif 1b - 0b > 8
127127
.align 4
@@ -146,10 +146,10 @@ r4k_wait_exit:
146146
MFC0 k0, CP0_EPC
147147
/* Subtract/add 2 to let the ISA bit propagate through the mask. */
148148
PTR_LA k1, r4k_wait_insn - 2
149-
ori k0, r4k_wait_idle_size - 2
149+
ori k0, r4k_wait_idle_size - 2
150150
.set noreorder
151151
bne k0, k1, \handler
152-
PTR_ADDIU k0, r4k_wait_exit - r4k_wait_insn + 2
152+
PTR_ADDIU k0, r4k_wait_exit - r4k_wait_insn + 2
153153
.set reorder
154154
MTC0 k0, CP0_EPC
155155
.set pop

0 commit comments

Comments
 (0)