File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ - Add missing entry for ` address_block ` in ` DeriveFrom ` impl
11
+
10
12
## [ v0.14.11] - 2025-02-10
11
13
12
14
- Partially revert #283 . Check name on "%s" when derive array
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ impl DeriveFrom for PeripheralInfo {
56
56
. default_register_properties
57
57
. derive_from ( & other. default_register_properties ) ;
58
58
derived. registers = derived. registers . or_else ( || other. registers . clone ( ) ) ;
59
+ derived. address_block = derived
60
+ . address_block
61
+ . or_else ( || other. address_block . clone ( ) ) ;
59
62
if derived. interrupt . is_empty ( ) {
60
63
derived. interrupt = other. interrupt . clone ( ) ;
61
64
}
You can’t perform that action at this time.
0 commit comments