mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
staging: Move ralink-gdma to its own directory
This is in preparation to allow it and the mt7621-dma drivers to be built separately. They are completely independent pieces of software, and the Kconfig specifies very different requirements. Cc: linux-kernel@vger.kernel.org Cc: devel@driverdev.osuosl.org Cc: Neil Brown <neil@brown.name> Signed-off-by: George Hilliard <thirtythreeforty@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
48101806c5
commit
d6b1090546
@ -112,6 +112,8 @@ source "drivers/staging/mt7621-spi/Kconfig"
|
||||
|
||||
source "drivers/staging/mt7621-dma/Kconfig"
|
||||
|
||||
source "drivers/staging/ralink-gdma/Kconfig"
|
||||
|
||||
source "drivers/staging/mt7621-mmc/Kconfig"
|
||||
|
||||
source "drivers/staging/mt7621-eth/Kconfig"
|
||||
|
@ -46,6 +46,7 @@ obj-$(CONFIG_SOC_MT7621) += mt7621-pci-phy/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-pinctrl/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-spi/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-dma/
|
||||
obj-$(CONFIG_SOC_MT7621) += ralink-gdma/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-mmc/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-eth/
|
||||
obj-$(CONFIG_SOC_MT7621) += mt7621-dts/
|
||||
|
@ -1,9 +1,3 @@
|
||||
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
|
||||
|
@ -1,4 +1,3 @@
|
||||
obj-$(CONFIG_DMA_RALINK) += ralink-gdma.o
|
||||
obj-$(CONFIG_MTK_HSDMA) += mtk-hsdma.o
|
||||
|
||||
ccflags-y += -I$(srctree)/drivers/dma
|
||||
|
6
drivers/staging/ralink-gdma/Kconfig
Normal file
6
drivers/staging/ralink-gdma/Kconfig
Normal file
@ -0,0 +1,6 @@
|
||||
config DMA_RALINK
|
||||
tristate "RALINK DMA support"
|
||||
depends on RALINK && !SOC_RT288X
|
||||
select DMA_ENGINE
|
||||
select DMA_VIRTUAL_CHANNELS
|
||||
|
3
drivers/staging/ralink-gdma/Makefile
Normal file
3
drivers/staging/ralink-gdma/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
obj-$(CONFIG_DMA_RALINK) += ralink-gdma.o
|
||||
|
||||
ccflags-y += -I$(srctree)/drivers/dma
|
Loading…
Reference in New Issue
Block a user