Skip to content

Commit a49f56e

Browse files
edgariglMichal Simek
authored andcommitted
microblaze: Fix a typo when disabling stack protection
Correct a typo causing the stack protector to be left enabled. 0xFFFFFFF -> 0xFFFFFFFF Signed-off-by: Edgar E. Iglesias <[email protected]> Tested-by: Guenter Roeck <[email protected]> Signed-off-by: Michal Simek <[email protected]>
1 parent 4f3cbd7 commit a49f56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/microblaze/kernel/head.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ real_start:
6666
mts rmsr, r0
6767
/* Disable stack protection from bootloader */
6868
mts rslr, r0
69-
addi r8, r0, 0xFFFFFFF
69+
addi r8, r0, 0xFFFFFFFF
7070
mts rshr, r8
7171
/*
7272
* According to Xilinx, msrclr instruction behaves like 'mfs rX,rpc'

0 commit comments

Comments
 (0)