Skip to content

Commit fa56658

Browse files
committed
Add comments and spaces in pos/size values
1 parent 80f37ae commit fa56658

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

samples/subsys/fs/littlefs/boards/rpi_pico.overlay

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2025 Andreas Wolf <awolf002@gmail.com>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
16

27
/delete-node/ &code_partition;
38

@@ -9,13 +14,13 @@
914

1015
code_partition: partition@100 {
1116
label = "code-partition";
12-
reg = <0x100 (DT_SIZE_M(2)-0x100-DT_SIZE_K(64))>;
17+
reg = <0x100 (DT_SIZE_M(2) - 0x100 - DT_SIZE_K(64))>;
1318
read-only;
1419
};
1520

1621
storage_partition: storage_partition@1f0000 {
1722
label = "storage-partition";
18-
reg = <(DT_SIZE_M(2)-DT_SIZE_K(64)) (DT_SIZE_K(64))>;
23+
reg = <(DT_SIZE_M(2) - DT_SIZE_K(64)) (DT_SIZE_K(64))>;
1924
};
2025
};
2126
};
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Andreas Wolf <awolf002@gmai.com>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
17
#include "rpi_pico.overlay"

0 commit comments

Comments
 (0)