Skip to content
Snippets Groups Projects
Unverified Commit c9f3b6d6 authored by Gaëtan Harter's avatar Gaëtan Harter Committed by GitHub
Browse files

Merge pull request #9974 from haukepetersen/fix_mips_gpioirqdisen

cpu/mips: remove `periph_gpio_irq` feature and stub
parents 9c1d5e52 da899daf
No related branches found
No related tags found
No related merge requests found
# Put defined MCU peripherals here (in alphabetical order) # Put defined MCU peripherals here (in alphabetical order)
FEATURES_PROVIDED += periph_gpio periph_gpio_irq FEATURES_PROVIDED += periph_gpio
FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart FEATURES_PROVIDED += periph_uart
......
# Put defined MCU peripherals here (in alphabetical order) # Put defined MCU peripherals here (in alphabetical order)
FEATURES_PROVIDED += periph_gpio periph_gpio_irq FEATURES_PROVIDED += periph_gpio
FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart FEATURES_PROVIDED += periph_uart
......
...@@ -172,20 +172,6 @@ int gpio_init(gpio_t pin, gpio_mode_t mode) ...@@ -172,20 +172,6 @@ int gpio_init(gpio_t pin, gpio_mode_t mode)
return 0; return 0;
} }
int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
gpio_cb_t cb, void *arg)
{
(void)pin;
(void)mode;
(void)flank;
(void)cb;
(void)arg;
/* TODO: Not implemented yet */
return -1;
}
int gpio_read(gpio_t pin) int gpio_read(gpio_t pin)
{ {
assert(check_valid_port(GPIO_PORT(pin))); assert(check_valid_port(GPIO_PORT(pin)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment