Many APIs had two versions, by port and by pin, which called the same API with different parameters. This has been reorganized to reduce the number of system calls. Callback registration API skipped. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
22 lines
799 B
Makefile
22 lines
799 B
Makefile
ccflags-y +=-I$(srctree)/drivers
|
|
|
|
obj-$(CONFIG_GPIO_DW) += gpio_dw.o
|
|
obj-$(CONFIG_GPIO_PCAL9535A) += gpio_pcal9535a.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_MCUX) += gpio_mcux.o
|
|
obj-$(CONFIG_GPIO_MMIO32) += gpio_mmio32.o
|
|
obj-$(CONFIG_GPIO_STM32) += gpio_stm32.o
|
|
obj-$(CONFIG_GPIO_NRF5) += gpio_nrf5.o
|
|
obj-$(CONFIG_GPIO_CMSDK_AHB) += gpio_cmsdk_ahb.o
|
|
obj-$(CONFIG_GPIO_CC32XX) += gpio_cc32xx.o
|
|
obj-$(CONFIG_GPIO_PULPINO) += gpio_pulpino.o
|
|
obj-$(CONFIG_GPIO_FE310) += gpio_fe310.o
|
|
obj-$(CONFIG_GPIO_CC2650) += gpio_cc2650.o
|
|
obj-$(CONFIG_GPIO_ESP32) += gpio_esp32.o
|
|
obj-$(CONFIG_GPIO_GECKO) += gpio_gecko.o
|
|
|
|
obj-$(CONFIG_USERSPACE) += gpio_handlers.o
|