Can I reassign one of my led pins to use for my bmi270 interrupt?

I am getting a warning in my nrf5340 overlay file because I ran out of pins and need to reassign P0.30 to my BMI270 interrupt 1. Here is the message in the overlay file:

Pin 30 of &gpio0 already assigned to &led2
nrf5340_cpuapp_common.dtsi(32, 9): Overlapping assignment

I have this for my bmi270:

    bmi270@68 {
            compatible = "bosch,bmi270";
            irq-gpios = <&gpio0 30 GPIO_ACTIVE_HIGH>, <&gpio1 14 GPIO_ACTIVE_HIGH>;
            reg = <0x68>;
    };	

Related