[PATCH] ppc: fix a bunch of warnings
Building a PowerMac kernel with ARCH=powerpc causes a bunch of warnings, this fixes some of them Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:

committed by
Paul Mackerras

parent
75722d3992
commit
21fe3301f1
@@ -2667,10 +2667,10 @@ powerbook_sleep_3400(void)
|
||||
asleep = 1;
|
||||
|
||||
/* Put the CPU into sleep mode */
|
||||
asm volatile("mfspr %0,1008" : "=r" (hid0) :);
|
||||
hid0 = mfspr(SPRN_HID0);
|
||||
hid0 = (hid0 & ~(HID0_NAP | HID0_DOZE)) | HID0_SLEEP;
|
||||
asm volatile("mtspr 1008,%0" : : "r" (hid0));
|
||||
_nmask_and_or_msr(0, MSR_POW | MSR_EE);
|
||||
mtspr(SPRN_HID0, hid0);
|
||||
mtmsr(mfmsr() | MSR_POW | MSR_EE);
|
||||
udelay(10);
|
||||
|
||||
/* OK, we're awake again, start restoring things */
|
||||
|
Reference in New Issue
Block a user