diff --git a/drivers/gpio/gpio_cc2650.c b/drivers/gpio/gpio_cc2650.c index 68ed22490ba..a41f0d3e261 100644 --- a/drivers/gpio/gpio_cc2650.c +++ b/drivers/gpio/gpio_cc2650.c @@ -139,11 +139,6 @@ static int gpio_cc2650_config_pin(int pin, int flags) iocfg_config |= CC2650_IOC_NEG_AND_POS_EDGE_DET; } - if (flags & GPIO_INT_CLOCK_SYNC) { - /* Don't commit changes */ - return -ENOTSUP; - } - if (flags & GPIO_INT_DEBOUNCE) { iocfg_config |= CC2650_IOC_HYSTERESIS_ENABLED; } else { diff --git a/include/dt-bindings/gpio/gpio.h b/include/dt-bindings/gpio/gpio.h index 21fd0dfa6ce..c365d449e34 100644 --- a/include/dt-bindings/gpio/gpio.h +++ b/include/dt-bindings/gpio/gpio.h @@ -40,9 +40,6 @@ /** GPIO pin trigger on level high or rising edge. */ #define GPIO_INT_ACTIVE_HIGH (1 << 2) -/** GPIO pin trigger to be synchronized to clock pulses. */ -#define GPIO_INT_CLOCK_SYNC (1 << 3) - /** Enable GPIO pin debounce. */ #define GPIO_INT_DEBOUNCE (1 << 4)