Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16e556aa authored by John Crispin's avatar John Crispin Committed by Greg Kroah-Hartman
Browse files

staging: mt7621-gpio: ralink: add mt7621 gpio controller

parent 0317d60d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -120,4 +120,6 @@ source "drivers/staging/pi433/Kconfig"

source "drivers/staging/mt7621-pinctrl/Kconfig"

source "drivers/staging/mt7621-gpio/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -51,3 +51,4 @@ obj-$(CONFIG_DRM_VBOXVIDEO) += vboxvideo/
obj-$(CONFIG_PI433)		+= pi433/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-pci/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-pinctrl/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-gpio/
+6 −0
Original line number Diff line number Diff line
config GPIO_MT7621
	bool "Mediatek GPIO Support"
	depends on SOC_MT7620 || SOC_MT7621
	select ARCH_REQUIRE_GPIOLIB
	help
	  Say yes here to support the Mediatek SoC GPIO device
+3 −0
Original line number Diff line number Diff line
obj-$(CONFIG_GPIO_MT7621)	+= gpio-mt7621.o

ccflags-y += -I$(srctree)/$(src)/include
+5 −0
Original line number Diff line number Diff line

- general code review and clean up
- ensure device-tree requirements are documented

Cc:  NeilBrown <neil@brown.name>
Loading