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

Commit 0853c7a5 authored by John Crispin's avatar John Crispin Committed by Greg Kroah-Hartman
Browse files

staging: mt7621-dma: ralink: add rt2880 dma engine

parent 1ab7f2a4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -124,4 +124,6 @@ source "drivers/staging/mt7621-gpio/Kconfig"

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

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

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -53,3 +53,4 @@ obj-$(CONFIG_SOC_MT7621) += mt7621-pci/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-pinctrl/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-gpio/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-spi/
obj-$(CONFIG_SOC_MT7621)	+= mt7621-dma/
+12 −0
Original line number Diff line number Diff line
config DMA_RALINK
	tristate "RALINK DMA support"
	depends on RALINK && !SOC_RT288X
	select DMA_ENGINE
	select DMA_VIRTUAL_CHANNELS

config MTK_HSDMA
	tristate "MTK HSDMA support"
	depends on RALINK && SOC_MT7621
	select DMA_ENGINE
	select DMA_VIRTUAL_CHANNELS
+4 −0
Original line number Diff line number Diff line
obj-$(CONFIG_DMA_RALINK) += ralink-gdma.o
obj-$(CONFIG_MTK_HSDMA) += mtk-hsdma.o

ccflags-y += -I$(srctree)/drivers/dma
+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