I have a device tree that I want to override some node's reg value. The problem is that my understanding the name of the node has to match the reg value. How can this node's reg change without overriding the parent node.
Example:
\{
parent_name : parent {
n10 : node@10 {
reg = <10>;
};
n100 : node@100 {
reg = <100>;
};
};
To override node@100
to have a different reg value, can this be done:
&n100 {
reg = <200>;
}
If this is done, the reg of node@100
will be 200 which is not what the specs says.