Browse Source

Merge "fix(zynqmp): fix for incorrect afi write mask value" into integration

pull/1988/head
Joanna Farley 2 years ago
committed by TrustedFirmware Code Review
parent
commit
d97fc8de85
  1. 2
      plat/xilinx/zynqmp/pm_service/pm_api_ioctl.c

2
plat/xilinx/zynqmp/pm_service/pm_api_ioctl.c

@ -553,7 +553,7 @@ static enum pm_ret_status pm_ioctl_afi(uint32_t index,
return PM_RET_ERROR_ARGS;
}
if (index < AFIFM6_WRCTRL) {
if (index <= AFIFM6_WRCTRL) {
mask = FABRIC_WIDTH;
} else {
mask = 0xf00;

Loading…
Cancel
Save