tests/subsys/fs/littlefs: correct flash partition unit address

Unit addresses for partitions should correspond to the start address.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
This commit is contained in:
Peter A. Bigot 2019-10-27 06:38:40 -05:00 committed by Carles Cufí
parent b652739a94
commit 17945358e8
3 changed files with 6 additions and 6 deletions

View File

@ -19,11 +19,11 @@
label = "small";
reg = <0x00000000 0x00010000>;
};
partition@200000 {
partition@10000 {
label = "medium";
reg = <0x00010000 0x000F0000>;
};
partition@220000 {
partition@100000 {
label = "large";
reg = <0x00100000 0x00300000>;
};

View File

@ -19,11 +19,11 @@
label = "small";
reg = <0x00000000 0x00010000>;
};
partition@200000 {
partition@10000 {
label = "medium";
reg = <0x00010000 0x000F0000>;
};
partition@220000 {
partition@100000 {
label = "large";
reg = <0x00100000 0x00300000>;
};

View File

@ -14,11 +14,11 @@
label = "small";
reg = <0x00000000 0x00010000>;
};
partition@200000 {
partition@10000 {
label = "medium";
reg = <0x00010000 0x000F0000>;
};
partition@220000 {
partition@100000 {
label = "large";
reg = <0x00100000 0x00300000>;
};