summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bsps/aarch64/xilinx-zynqmp/jffs2_xnandpsu.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/bsps/aarch64/xilinx-zynqmp/jffs2_xnandpsu.c b/bsps/aarch64/xilinx-zynqmp/jffs2_xnandpsu.c
index ab0eb1ccd5..cf2a7d8192 100644
--- a/bsps/aarch64/xilinx-zynqmp/jffs2_xnandpsu.c
+++ b/bsps/aarch64/xilinx-zynqmp/jffs2_xnandpsu.c
@@ -105,21 +105,15 @@ static int flash_erase(
{
XNandPsu *nandpsu = get_flash_control(super)->nandpsu;
rtems_status_code sc;
- uint32_t BlockSize = nandpsu->Geometry.BlockSize;
- uint32_t DeviceSize = nandpsu->Geometry.DeviceSize;
- uint32_t BlockIndex;
- uint32_t DeviceIndex;
+ uint64_t BlockSize = nandpsu->Geometry.BlockSize;
if (offset > nandpsu->Geometry.DeviceSize) {
return -EIO;
}
- DeviceIndex = offset / DeviceSize;
- BlockIndex = (offset % DeviceSize) / BlockSize;
-
/* Perform erase operation. */
rtems_mutex_lock(&(get_flash_control(super)->access_lock));
- sc = XNandPsu_EraseBlock(nandpsu, DeviceIndex, BlockIndex);
+ sc = XNandPsu_Erase(nandpsu, RTEMS_ALIGN_DOWN(offset, BlockSize), BlockSize);
rtems_mutex_unlock(&(get_flash_control(super)->access_lock));
if (sc ) {
return -EIO;