UART1 still conflict with SPI1 even if the status of UART1 is "disabled" in the zephyr.dts

I'm working on ncs 1.6.1 and nrf9160-DK.

I need to use SPI1, so i confirmed that UART1 is already disabled by default in  ncs\v1.6.1\zephyr\boards\arm\nrf9160dk_nrf9160\nrf9160dk_nrf9160ns.dts

and i also add a &uart1 status = "disabled" in my overlay files. however, the SPI1 didn't work , 

finally, the SPI1 works successfully only if i disable uart1 in ncs\v1.6.1\zephyr\boards\arm\nrf9160dk_nrf9160\nrf9160dk_nrf9160_common.dts

but i don't want to modify files in SDK like this, so, is there any way to  solve this in project files like overlay file?

Related