aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Abraham <thomas.abraham@arm.com>2020-04-16 16:08:53 +0530
committerThomas Abraham <thomas.abraham@arm.com>2020-04-16 16:08:53 +0530
commit238241dff8bdeabfad5de2f05dba4c9e6cba6548 (patch)
tree913e7548de9f50a9213431c1a41720c7e3b85a45
parentd9842e334c65cdcca08160ffad1325c594d40fc6 (diff)
module/ppu_v1: remove a incorrect assert checkRD-E1EDGE-2020.04.16refinfra-rde1edge
Remove a incorrect assert check. This is a temporary patch to fix this issue. Change-Id: I4156132b119d39c66a4a7c951412b3adfc40783d Signed-off-by: Thomas Abraham <thomas.abraham@arm.com>
-rw-r--r--module/ppu_v1/src/ppu_v1.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/module/ppu_v1/src/ppu_v1.c b/module/ppu_v1/src/ppu_v1.c
index 6bb3bf25..9f6531db 100644
--- a/module/ppu_v1/src/ppu_v1.c
+++ b/module/ppu_v1/src/ppu_v1.c
@@ -117,7 +117,6 @@ void ppu_v1_dynamic_enable(struct ppu_v1_reg *ppu,
void ppu_v1_dynamic_disable(struct ppu_v1_reg *ppu)
{
assert(ppu != NULL);
- assert(min_dyn_mode < PPU_V1_OPMODE_COUNT);
ppu->PWPR = ppu->PWPR & (~PPU_V1_PWPR_DYNAMIC_EN);
}