1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &storage_partition;
8
9&mx25r64 {
10	partitions {
11		compatible = "fixed-partitions";
12		#address-cells = <1>;
13		#size-cells = <1>;
14
15		storage_partition: partition@0 {
16			label = "storage";
17			reg = <0x00000000 0x00020000>;
18		};
19	};
20};
21
22/ {
23	msc_disk0 {
24		compatible = "zephyr,flash-disk";
25		partition = <&storage_partition>;
26		disk-name = "NAND";
27		cache-size = <4096>;
28	};
29};
30