301-gpio-add-rtl838x-driver.patch 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --- a/drivers/gpio/Kconfig
  2. +++ b/drivers/gpio/Kconfig
  3. @@ -441,6 +441,18 @@ config GPIO_REG
  4. A 32-bit single register GPIO fixed in/out implementation. This
  5. can be used to represent any register as a set of GPIO signals.
  6. +config GPIO_RTL8231
  7. + tristate "RTL8231 GPIO"
  8. + depends on GPIO_RTL838X
  9. + help
  10. + Say yes here to support Realtek RTL8231 GPIO expansion chips.
  11. +
  12. +config GPIO_RTL838X
  13. + tristate "RTL838X GPIO"
  14. + depends on RTL838X
  15. + help
  16. + Say yes here to support RTL838X GPIO devices.
  17. +
  18. config GPIO_SAMA5D2_PIOBU
  19. tristate "SAMA5D2 PIOBU GPIO support"
  20. depends on MFD_SYSCON
  21. --- a/drivers/gpio/Makefile
  22. +++ b/drivers/gpio/Makefile
  23. @@ -117,6 +117,8 @@ obj-$(CONFIG_GPIO_RC5T583) += gpio-rc5t
  24. obj-$(CONFIG_GPIO_RCAR) += gpio-rcar.o
  25. obj-$(CONFIG_GPIO_RDC321X) += gpio-rdc321x.o
  26. obj-$(CONFIG_GPIO_REG) += gpio-reg.o
  27. +obj-$(CONFIG_GPIO_RTL8231) += gpio-rtl8231.o
  28. +obj-$(CONFIG_GPIO_RTL838X) += gpio-rtl838x.o
  29. obj-$(CONFIG_ARCH_SA1100) += gpio-sa1100.o
  30. obj-$(CONFIG_GPIO_SAMA5D2_PIOBU) += gpio-sama5d2-piobu.o
  31. obj-$(CONFIG_GPIO_SCH311X) += gpio-sch311x.o