summaryrefslogtreecommitdiff
path: root/meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch')
-rw-r--r--meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch68
1 files changed, 0 insertions, 68 deletions
diff --git a/meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch b/meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch
deleted file mode 100644
index 87e1b111b..000000000
--- a/meta-xilinx/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware/fix-zynqmp-assert.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-diff --git a/lib/sw_apps/zynqmp_pmufw/src/pm_reset.c b/lib/sw_apps/zynqmp_pmufw/src/pm_reset.c
-index 297c6c2ddc..bc295cf013 100644
---- a/lib/sw_apps/zynqmp_pmufw/src/pm_reset.c
-+++ b/lib/sw_apps/zynqmp_pmufw/src/pm_reset.c
-@@ -52,7 +52,7 @@
- * @pulse Function performing reset pulse operation
- */
- typedef struct PmResetOps {
-- void (*const assert)(const PmReset* const rst, const u32 action);
-+ void (*const resetAssert)(const PmReset* const rst, const u32 action);
- u32 (*const getStatus)(const PmReset* const s);
- u32 (*const pulse)(const PmReset* const rst);
- } PmResetOps;
-@@ -415,37 +415,37 @@ static u32 PmResetPulsePl(const PmReset* const rst)
- }
-
- static const PmResetOps pmResetOpsGeneric = {
-- .assert = PmResetAssertGen,
-+ .resetAssert = PmResetAssertGen,
- .getStatus = PmResetGetStatusGen,
- .pulse = PmResetPulseGen,
- };
-
- static const PmResetOps pmResetOpsGpo = {
-- .assert = PmResetAssertGpo,
-+ .resetAssert = PmResetAssertGpo,
- .getStatus = PmResetGetStatusGpo,
- .pulse = PmResetPulseGpo,
- };
-
- static const PmResetOps pmResetOpsRom = {
-- .assert = PmResetAssertRom,
-+ .resetAssert = PmResetAssertRom,
- .getStatus = PmResetGetStatusRom,
- .pulse = PmResetPulseRom,
- };
-
- static const PmResetOps pmResetOpsNoAssert = {
-- .assert = NULL,
-+ .resetAssert = NULL,
- .getStatus = PmResetGetStatusRom,
- .pulse = PmResetPulseRom,
- };
-
- static const PmResetOps pmResetOpsPl = {
-- .assert = PmResetAssertPl,
-+ .resetAssert = PmResetAssertPl,
- .getStatus = PmResetGetStatusPl,
- .pulse = PmResetPulsePl,
- };
-
- static const PmResetOps pmResetOpsGpioBankIO = {
-- .assert = NULL,
-+ .resetAssert = NULL,
- .getStatus = PmResetGetStatusGpioBankIOs,
- .pulse = PmResetPulseGpioBankIOs,
- };
-@@ -1901,8 +1901,8 @@ s32 PmResetDoAssert(const PmReset *reset, u32 action)
- switch (action) {
- case PM_RESET_ACTION_RELEASE:
- case PM_RESET_ACTION_ASSERT:
-- if (NULL != reset->ops->assert) {
-- reset->ops->assert(reset, action);
-+ if (NULL != reset->ops->resetAssert) {
-+ reset->ops->resetAssert(reset, action);
- } else {
- status = XST_INVALID_PARAM;
- }