Commit 3897e867 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] ppc64: trivial cleanup

From: David Gibson <david@gibson.dropbear.id.au>

The ppc64 head.S contains an enable_32b_mode function which is used
nowhere.  This patch removes it.
parent 984aa1e8
...@@ -1955,21 +1955,6 @@ _GLOBAL(enable_64b_mode) ...@@ -1955,21 +1955,6 @@ _GLOBAL(enable_64b_mode)
isync isync
blr blr
/*
* This subroutine clobbers r11, r12 and the LR
*/
_GLOBAL(enable_32b_mode)
mfmsr r11 /* grab the current MSR */
li r12,1
rldicr r12,r12,MSR_SF_LG,(63-MSR_SF_LG)
andc r11,r11,r12
li r12,1
rldicr r12,r12,MSR_ISF_LG,(63-MSR_ISF_LG)
andc r11,r11,r12
mtmsrd r11
isync
blr
#ifdef CONFIG_PPC_PSERIES #ifdef CONFIG_PPC_PSERIES
/* /*
* This is where the main kernel code starts. * This is where the main kernel code starts.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment