PMUFW: PM: Remove workaround for older PMU-ROM version

XpbrPwrUpFpdHandler used to not always return XST_SUCCESS, this
problem no longer exists hence the workaround can be dropped.

Signed-off-by: Davorin Mista <davorin.mista@aggios.com>
Acked-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Acked-by: Jyotheeswar Reddy Mutthareddyvari <jyothee@xilinx.com>
This commit is contained in:
Davorin Mista 2015-05-31 21:13:56 -07:00 committed by Nava kishore Manne
parent 5ad6dc1280
commit e6089585af
2 changed files with 1 additions and 9 deletions

View file

@ -180,14 +180,6 @@ static int PmPwrUpHandler(PmNode* const nodePtr)
switch (nodePtr->nodeId) {
case NODE_FPD:
status = XpbrPwrUpFpdHandler();
#ifdef DEBUG_PM
/* FIXME workaround for old version of pmu-rom */
if (XST_SUCCESS != status) {
PmDbg("XpbrPwrUpFpdHandler returned #%d."
"Ignoring error\n", status);
status = XST_SUCCESS;
}
#endif
if (XST_SUCCESS == status) {
PmCrfRestoreContext();
}

View file

@ -1,4 +1,4 @@
#ifndef ZYNQMP_XPFW_VERSION__H_
#define ZYNQMP_XPFW_VERSION__H_
#define ZYNQMP_XPFW_VERSION "2015.1-swbeta2-41-g884008482155"
#define ZYNQMP_XPFW_VERSION "2015.1-swbeta2-42-gfc7dbb7b2e11"
#endif