how to disable/configure UART1

I ran into a problem. I am unable to disable or reconfigure UART1. Any changes to the file .overlay does not give effects. I paste into the file nrf9160dk_nrf9160_ns.overlay strings 
&uart1 {
status = "disabled";
tx-pin = < 0x8 >;
rx-pin = < 0x9 >;
}; 

but UART1 still working on pin < 0x00 > < 0x01 >


I also tried disabling UART1 into config CONFIG_TFM_SECURE_UART1=n but that didn't help either.

Related