diff options
author | Anton Blanchard <anton@samba.org> | 2012-03-21 16:56:49 +0100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-03-28 02:32:00 +0200 |
commit | 6f43747f6a7ef216fbea1d5b5d94044d504e12ce (patch) | |
tree | 254ae2ff9ff896c0ec8c7d8dc6af01c7a3d43818 /arch/powerpc/platforms/pseries/ras.c | |
parent | powerpc/pseries: Use rtas_get_sensor in RAS code (diff) | |
download | linux-6f43747f6a7ef216fbea1d5b5d94044d504e12ce.tar.xz linux-6f43747f6a7ef216fbea1d5b5d94044d504e12ce.zip |
powerpc/pseries: Remove RTAS_POWERMGM_EVENTS
IBM bit 2 in the rtas event-scan and check-exception calls is
marked reserved in the PAPR, so remove it from our RAS code.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries/ras.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/ras.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/ras.c b/arch/powerpc/platforms/pseries/ras.c index 670b45bde8f1..42fda797d008 100644 --- a/arch/powerpc/platforms/pseries/ras.c +++ b/arch/powerpc/platforms/pseries/ras.c @@ -223,7 +223,7 @@ static irqreturn_t ras_epow_interrupt(int irq, void *dev_id) status = rtas_call(ras_check_exception_token, 6, 1, NULL, RTAS_VECTOR_EXTERNAL_INTERRUPT, virq_to_hw(irq), - RTAS_EPOW_WARNING | RTAS_POWERMGM_EVENTS, + RTAS_EPOW_WARNING, critical, __pa(&ras_log_buf), rtas_get_error_log_max()); |