From b7d22226d94b6a93be1e963520904a646326bc71 Mon Sep 17 00:00:00 2001 From: Jyotheeswar Reddy Date: Thu, 6 Aug 2015 11:02:19 -0700 Subject: [PATCH] PMUFW: Interrupts: Fix Event IDs in debug message Signed-off-by: Jyotheeswar Reddy --- lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c | 4 ++-- lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c b/lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c index f08cedf9..f743c99a 100644 --- a/lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c +++ b/lib/sw_apps/zynqmp_pmufw/src/xpfw_interrupts.c @@ -143,7 +143,7 @@ static void XPfw_InterruptPwrUpHandler(void) if (XST_SUCCESS != Status) { fw_printf("Warning: Failed to dispatch Event ID: %d\r\n", - XPFW_EV_MB_FAULT); + XPFW_EV_REQ_PWRUP); } } @@ -153,7 +153,7 @@ static void XPfw_InterruptPwrDnHandler(void) if (XST_SUCCESS != Status) { fw_printf("Warning: Failed to dispatch Event ID: %d\r\n", - XPFW_EV_MB_FAULT); + XPFW_EV_REQ_PWRDN); } } diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h b/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h index 39f8329f..ea505447 100644 --- a/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h +++ b/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h @@ -1,4 +1,4 @@ #ifndef ZYNQMP_XPFW_VERSION__H_ #define ZYNQMP_XPFW_VERSION__H_ - #define ZYNQMP_XPFW_VERSION "2015.3-rc1-6-g61cf37508b43" + #define ZYNQMP_XPFW_VERSION "2015.3-rc1-7-gcfd691133218" #endif