Modify preprocessor directives to use basic #if !defined() rather than Zephyr macros where appropriate.
This commit is contained in:
parent
9392c4f9ff
commit
c2a861c0e6
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ struct kscan_gpio_item_config {
|
||||||
#define _KSCAN_GPIO_ROW_CFG_INIT(idx, n) _KSCAN_GPIO_ITEM_CFG_INIT(n, row_gpios, idx)
|
#define _KSCAN_GPIO_ROW_CFG_INIT(idx, n) _KSCAN_GPIO_ITEM_CFG_INIT(n, row_gpios, idx)
|
||||||
#define _KSCAN_GPIO_COL_CFG_INIT(idx, n) _KSCAN_GPIO_ITEM_CFG_INIT(n, col_gpios, idx)
|
#define _KSCAN_GPIO_COL_CFG_INIT(idx, n) _KSCAN_GPIO_ITEM_CFG_INIT(n, col_gpios, idx)
|
||||||
|
|
||||||
#ifdef CONFIG_ZMK_KSCAN_MATRIX_POLLING
|
#if !defined(CONFIG_ZMK_KSCAN_MATRIX_POLLING)
|
||||||
static int kscan_gpio_config_interrupts(struct device **devices,
|
static int kscan_gpio_config_interrupts(struct device **devices,
|
||||||
const struct kscan_gpio_item_config *configs, size_t len,
|
const struct kscan_gpio_item_config *configs, size_t len,
|
||||||
gpio_flags_t flags) {
|
gpio_flags_t flags) {
|
||||||
|
|
Loading…
Reference in a new issue