mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
The build files for drivers/gpio has some wording and comments about the directory being reserved exclusively for GPIO expanders (according to the gpio.txt file these are on external busses) and this has been false for some time. We already have PL061 and Xilinx drivers which are in silicon and now I'm moving more silicon drivers here, so delete this and reword it a bit. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42 lines
1.6 KiB
Makefile
42 lines
1.6 KiB
Makefile
# generic gpio support: platform drivers, dedicated expander chips, etc
|
|
|
|
ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG
|
|
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib.o
|
|
|
|
obj-$(CONFIG_GPIO_ADP5520) += adp5520-gpio.o
|
|
obj-$(CONFIG_GPIO_ADP5588) += adp5588-gpio.o
|
|
obj-$(CONFIG_GPIO_BASIC_MMIO) += basic_mmio_gpio.o
|
|
obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o
|
|
obj-$(CONFIG_GPIO_MAX730X) += max730x.o
|
|
obj-$(CONFIG_GPIO_MAX7300) += max7300.o
|
|
obj-$(CONFIG_GPIO_MAX7301) += max7301.o
|
|
obj-$(CONFIG_GPIO_MAX732X) += max732x.o
|
|
obj-$(CONFIG_GPIO_MC33880) += mc33880.o
|
|
obj-$(CONFIG_GPIO_MCP23S08) += mcp23s08.o
|
|
obj-$(CONFIG_GPIO_74X164) += 74x164.o
|
|
obj-$(CONFIG_GPIO_PCA953X) += pca953x.o
|
|
obj-$(CONFIG_GPIO_PCF857X) += pcf857x.o
|
|
obj-$(CONFIG_GPIO_PCH) += pch_gpio.o
|
|
obj-$(CONFIG_GPIO_PL061) += pl061.o
|
|
obj-$(CONFIG_GPIO_STMPE) += stmpe-gpio.o
|
|
obj-$(CONFIG_GPIO_TC3589X) += tc3589x-gpio.o
|
|
obj-$(CONFIG_GPIO_TIMBERDALE) += timbgpio.o
|
|
obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o
|
|
obj-$(CONFIG_GPIO_UCB1400) += ucb1400_gpio.o
|
|
obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o
|
|
obj-$(CONFIG_GPIO_CS5535) += cs5535-gpio.o
|
|
obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o
|
|
obj-$(CONFIG_GPIO_IT8761E) += it8761e_gpio.o
|
|
obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o
|
|
obj-$(CONFIG_GPIO_WM831X) += wm831x-gpio.o
|
|
obj-$(CONFIG_GPIO_WM8350) += wm8350-gpiolib.o
|
|
obj-$(CONFIG_GPIO_WM8994) += wm8994-gpio.o
|
|
obj-$(CONFIG_GPIO_SCH) += sch_gpio.o
|
|
obj-$(CONFIG_GPIO_RDC321X) += rdc321x-gpio.o
|
|
obj-$(CONFIG_GPIO_JANZ_TTL) += janz-ttl.o
|
|
obj-$(CONFIG_GPIO_SX150X) += sx150x.o
|
|
obj-$(CONFIG_GPIO_VX855) += vx855_gpio.o
|
|
obj-$(CONFIG_GPIO_ML_IOH) += ml_ioh_gpio.o
|
|
obj-$(CONFIG_AB8500_GPIO) += ab8500-gpio.o
|