mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 11:12:31 +00:00
In 1.0 you could set only one callback on the whole gpio controller. It was impossible for another sub-system to add another callback, without overwritting an existing one. Such API has been obsolete for a long time and no one is using it anymore. Thus removing it entirely. Change-Id: I6a17fd99373dc6cef1fa2ebb421e992412d5015e Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
13 lines
446 B
Makefile
13 lines
446 B
Makefile
ccflags-y +=-I$(srctree)/drivers
|
|
|
|
obj-$(CONFIG_GPIO_DW) += gpio_dw.o
|
|
obj-$(CONFIG_GPIO_PCAL9535A) += gpio_pcal9535a.o
|
|
obj-$(CONFIG_GPIO_MMIO) += gpio_mmio.o
|
|
obj-$(CONFIG_GPIO_SCH) += gpio_sch.o
|
|
obj-$(CONFIG_GPIO_QMSI) += gpio_qmsi.o
|
|
obj-$(CONFIG_GPIO_QMSI_SS) += gpio_qmsi_ss.o
|
|
obj-$(CONFIG_GPIO_ATMEL_SAM3) += gpio_atmel_sam3.o
|
|
obj-$(CONFIG_GPIO_K64) += gpio_k64.o
|
|
obj-$(CONFIG_GPIO_STM32) += gpio_stm32.o
|
|
obj-$(CONFIG_GPIO_NRF5) += gpio_nrf5.o
|