Commit 9cfd185a authored by Mert Vatansever's avatar Mert Vatansever Committed by Mahesh Mahadevan
Browse files

tests: drivers: flash: Fix MAX32666 flash error



This commit fixes flash error by correcting flash size.

Signed-off-by: default avatarMert Vatansever <mert.vatansever@analog.com>
parent f7ffadaf
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
		#size-cells = <1>;

		code_partition: partition@0 {
			reg = <0x0 DT_SIZE_K(512)>;
			reg = <0x0 DT_SIZE_K(256)>;
			read-only;
		};

		storage_partition: partition@80000 {
		storage_partition: partition@40000 {
			label = "storage";
			reg = <0x80000 DT_SIZE_K(512)>;
			reg = <0x40000 DT_SIZE_K(256)>;
		};
	};
};
+3 −3
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
		#size-cells = <1>;

		code_partition: partition@0 {
			reg = <0x0 DT_SIZE_K(512)>;
			reg = <0x0 DT_SIZE_K(256)>;
			read-only;
		};

		storage_partition: partition@80000 {
		storage_partition: partition@40000 {
			label = "storage";
			reg = <0x80000 DT_SIZE_K(512)>;
			reg = <0x40000 DT_SIZE_K(256)>;
		};
	};
};