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 <soren.brinkmann@xilinx.com> Reviewed-by: Jyotheeswar Reddy <jyothee@xilinx.com>
This commit is contained in:
parent
6941dfdcdc
commit
20c80ed9ad
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue