We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ba23c commit a0f5637Copy full SHA for a0f5637
svd-parser/src/expand.rs
@@ -453,8 +453,9 @@ fn derive_enumerated_values(
453
FieldPath::new(&fpath.register, &fdname)
454
} else {
455
let (rdpath, rdname) = RegisterPath::split_vec(v);
456
- let rdpath = if let Some(rdpath) = rdpath {
+ let rdpath = if let Some(mut rdpath) = rdpath {
457
// FULL.PATH.EVNAME:
458
+ rdpath.path.push(rdname.into());
459
rdpath
460
461
// REG.FIELD.EVNAME
0 commit comments