Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions drivers/gpio/gpio_pca_series.c
Original file line number Diff line number Diff line change
Expand Up @@ -1771,6 +1771,11 @@
const struct device *dev = data->self;

gpio_pca_series_interrupt_handler_extended(dev);
// If the interrupt is still active, schedule the worker again

Check failure on line 1774 in drivers/gpio/gpio_pca_series.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

C99_COMMENTS

drivers/gpio/gpio_pca_series.c:1774 do not use C99 // comments
const struct gpio_pca_series_config *cfg = dev->config;
if (gpio_pin_get_dt(&cfg->gpio_int)) {

Check warning on line 1776 in drivers/gpio/gpio_pca_series.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LINE_SPACING

drivers/gpio/gpio_pca_series.c:1776 Missing a blank line after declarations
k_work_submit(&data->int_work);
}
}

static void gpio_pca_series_gpio_int_handler(const struct device *dev,
Expand Down
Loading