diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-11-07 00:41:59 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-07 19:19:36 -0500 |
commit | 21fe3301f11a93c4f18e8480ed08522559bf0a50 (patch) | |
tree | 76076ecea25a621f0cffc856025279022ee8d234 /drivers/macintosh/via-pmu.c | |
parent | 75722d3992f57375c0cc029dcceb2334a45ceff1 (diff) |
[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>
Diffstat (limited to 'drivers/macintosh/via-pmu.c')
-rw-r--r-- | drivers/macintosh/via-pmu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index 9bc6cc6e3845..7ebbc0f53420 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c | |||
@@ -2667,10 +2667,10 @@ powerbook_sleep_3400(void) | |||
2667 | asleep = 1; | 2667 | asleep = 1; |
2668 | 2668 | ||
2669 | /* Put the CPU into sleep mode */ | 2669 | /* Put the CPU into sleep mode */ |
2670 | asm volatile("mfspr %0,1008" : "=r" (hid0) :); | 2670 | hid0 = mfspr(SPRN_HID0); |
2671 | hid0 = (hid0 & ~(HID0_NAP | HID0_DOZE)) | HID0_SLEEP; | 2671 | hid0 = (hid0 & ~(HID0_NAP | HID0_DOZE)) | HID0_SLEEP; |
2672 | asm volatile("mtspr 1008,%0" : : "r" (hid0)); | 2672 | mtspr(SPRN_HID0, hid0); |
2673 | _nmask_and_or_msr(0, MSR_POW | MSR_EE); | 2673 | mtmsr(mfmsr() | MSR_POW | MSR_EE); |
2674 | udelay(10); | 2674 | udelay(10); |
2675 | 2675 | ||
2676 | /* OK, we're awake again, start restoring things */ | 2676 | /* OK, we're awake again, start restoring things */ |