Re: [PATCH v4 2/2] ARM: dts: aspeed: Add NVIDIA VR-NVL BMC

From: Jacky Huang

Date: Wed Jul 29 2026 - 04:47:50 EST


Hi Krzysztof,

On Wed, Jul 29, 2026 at 08:16:52AM +0200, Krzysztof Kozlowski wrote:
> Why are you extending existing nodes that way instead of phandle/label?
> You write confusing code, so that's why you have such comments.

Thank you for pointing this out. I agree that the current form is unclear.

For v5, I plan to add source labels to the existing flash nodes in
aspeed-g6.dtsi:

fmc: spi@1e620000 {
fmc_flash0: flash@0 {
...
};
};

spi2: spi@1e631000 {
spi2_flash0: flash@0 {
...
};
};

The board DTS will then reference them directly:

&fmc_flash0 {
...
};

&spi2_flash0 {
...
};

This should make the references to the existing nodes explicit.

Best,
Jacky