west build failed with undefined node label 'qspi'

I found the following section in nrf52840.dtsi. But I can't find similar section in nrf52832.dtsi. Could I copy this section from nrf52840.dtsi to nrf52832.dtsi for solving west build error?

qspi: qspi@40029000 {
            compatible = "nordic,nrf-qspi";
            #address-cells = <1>;
            #size-cells = <0>;
            reg = <0x40029000 0x1000>, <0x12000000 0x8000000>;
            reg-names = "qspi", "qspi_mm";
            interrupts = <41 NRF_DEFAULT_IRQ_PRIORITY>;
            status = "disabled";
        };

Related