commit | 3fbd93e58e0f3589720798b7c8992a25e4a2d3a4 | [log] [tgz] |
---|---|---|
author | Michal Simek <monstr@monstr.eu> | Tue Jun 22 13:51:50 2010 +0200 |
committer | Michal Simek <monstr@monstr.eu> | Wed Aug 04 10:22:43 2010 +0200 |
tree | c4790394fbf29f5becb398a587f3638edd26cbc4 | |
parent | 36f6095419b100479bd3ffabcafe4dac8d918734 [diff] [blame] |
microblaze: Optimize clear_vms_ums macro We can save two instruction when MSR_VMS and MSR_UMS are setup in one instruction. Signed-off-by: Michal Simek <monstr@monstr.eu>
diff --git a/arch/microblaze/kernel/entry.S b/arch/microblaze/kernel/entry.S index 8f90ce7..f5fe220 100644 --- a/arch/microblaze/kernel/entry.S +++ b/arch/microblaze/kernel/entry.S
@@ -92,9 +92,7 @@ .endm .macro clear_vms_ums - msrclr r11, MSR_VMS - nop - msrclr r11, MSR_UMS + msrclr r11, MSR_VMS | MSR_UMS nop .endm #else