From 20c80ed9adc82adba006469e858d10bf38fed3d8 Mon Sep 17 00:00:00 2001 From: Soren Brinkmann Date: Mon, 1 Jun 2015 16:54:59 -0700 Subject: [PATCH] PMUFW: scheduler: Fix print format string A print format string had a typo in the conversion specifier. Fixes: ae1b22f628eeae491136205dd99cac745bad5b54 "Scheduler: Add Scheduler files" Signed-off-by: Soren Brinkmann Reviewed-by: Jyotheeswar Reddy --- lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c | 2 +- lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c b/lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c index c20d82ae..edbc6876 100644 --- a/lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c +++ b/lib/sw_apps/zynqmp_pmufw/src/xpfw_scheduler.c @@ -195,7 +195,7 @@ XStatus XPfw_SchedulerRemoveTask(XPfw_Scheduler_t *SchedPtr, u32 OwnerId, u32 Mi } } - fw_printf("$s: Removed %d tasks\r\n", __func__, TaskCount); + fw_printf("%s: Removed %d tasks\r\n", __func__, TaskCount); return ((TaskCount > 0) ? XST_SUCCESS : XST_FAILURE); } diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h b/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h index 70284836..9b0c37bc 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.1-swbeta2-7-gaea3444396c3" + #define ZYNQMP_XPFW_VERSION "2015.1-swbeta2-14-g2a2f9ea1077b" #endif