forked from kofal.net/zmk
refactor: Replace tabs with spaces
Standardized indentation to use spaces with a new pre-commit hook.
This commit is contained in:
committed by
Pete Johanson
parent
32ae776c42
commit
94061bb916
@@ -175,19 +175,19 @@ do is shift back the settings area and code space `0xC000` bytes. We'll apply
|
||||
this to all of the `.dts` files for the boards that were affected by this issue.
|
||||
|
||||
```diff
|
||||
code_partition: partition@26000 {
|
||||
label = "code_partition";
|
||||
- reg = <0x00026000 0x000d2000>;
|
||||
+ reg = <0x00026000 0x000c6000>;
|
||||
};
|
||||
code_partition: partition@26000 {
|
||||
label = "code_partition";
|
||||
- reg = <0x00026000 0x000d2000>;
|
||||
+ reg = <0x00026000 0x000c6000>;
|
||||
};
|
||||
|
||||
|
||||
- storage_partition: partition@f8000 {
|
||||
+ storage_partition: partition@ec000 {
|
||||
label = "storage";
|
||||
- reg = <0x000f8000 0x00008000>;
|
||||
+ reg = <0x000ec000 0x00008000>;
|
||||
};
|
||||
- storage_partition: partition@f8000 {
|
||||
+ storage_partition: partition@ec000 {
|
||||
label = "storage";
|
||||
- reg = <0x000f8000 0x00008000>;
|
||||
+ reg = <0x000ec000 0x00008000>;
|
||||
};
|
||||
```
|
||||
|
||||
And with those changes, we should no longer run into this issue! In the process
|
||||
|
||||
Reference in New Issue
Block a user