arm64: zynqmp: Fix User MTD partition size
The commit c8630167e0
("arm64: zynqmp: Add mtd partition for secure OS
storage area") didn't update User partition size that's why size was beyond
actual device size.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/0a56405553b87a75e066cd71697cafe7c1c97eef.1681309812.git.michal.simek@amd.com
This commit is contained in:
parent
66e8b8128b
commit
b250bd6139
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@
|
|||
};
|
||||
partition@22A0000 {
|
||||
label = "User";
|
||||
reg = <0x22A0000 0x1db0000>; /* 29.5 MB */
|
||||
reg = <0x22A0000 0x1d60000>; /* 29.375 MB */
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue