powerpc/pseries: Remove RTAS_POWERMGM_EVENTS
authorAnton Blanchard <anton@samba.org>
Wed, 21 Mar 2012 15:56:49 +0000 (15:56 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 28 Mar 2012 00:32:00 +0000 (11:32 +1100)
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>
arch/powerpc/include/asm/rtas.h
arch/powerpc/platforms/pseries/ras.c

index a01fa3eee6bdb10fa1bc6b00903b8e9c555aec46..f0a4db31ecb691841c37843842ad0d76d7deba40 100644 (file)
@@ -74,7 +74,6 @@ struct rtas_suspend_me_data {
 /* RTAS event classes */
 #define RTAS_INTERNAL_ERROR            0x80000000 /* set bit 0 */
 #define RTAS_EPOW_WARNING              0x40000000 /* set bit 1 */
-#define RTAS_POWERMGM_EVENTS           0x20000000 /* set bit 2 */
 #define RTAS_HOTPLUG_EVENTS            0x10000000 /* set bit 3 */
 #define RTAS_IO_EVENTS                 0x08000000 /* set bit 4 */
 #define RTAS_EVENT_SCAN_ALL_EVENTS     0xffffffff
index 670b45bde8f1330c91a0ca74e6da7443b472a6dd..42fda797d00809115e93142c4668dc8508291533 100644 (file)
@@ -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());