diff options
author | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-30 13:10:12 +0000 |
---|---|---|
committer | jogo <jogo@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-30 13:10:12 +0000 |
commit | 94a434b7ed28e105149227712ffc54e2a9b5766a (patch) | |
tree | 6297442313ccd9407a125bf42cd9d5e81e547fa2 /target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch | |
parent | bf24d1af7863bc6f03ba23437c3e54b9d2297ee6 (diff) |
kernel: update linux 3.9 to 3.9.8
Includes memory allocation fixes as well as several networking fixes.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37103 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch')
-rw-r--r-- | target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch b/target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch index a56ba188f1..bd3a6055bc 100644 --- a/target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch +++ b/target/linux/ramips/patches-3.9/0148-DMA-MIPS-ralink-add-dmaengine-driver.patch @@ -13,8 +13,6 @@ Signed-off-by: John Crispin <blogic@openwrt.org> create mode 100644 drivers/dma/ralink_gdma.c create mode 100644 drivers/dma/ralink_gdma.h -diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig -index aeaea32..751cdc4 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -322,6 +322,13 @@ config MMP_PDMA @@ -31,8 +29,6 @@ index aeaea32..751cdc4 100644 config DMA_ENGINE bool -diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile -index 488e3ff..f69e07e 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile @@ -37,3 +37,4 @@ obj-$(CONFIG_DMA_SA11X0) += sa11x0-dma.o @@ -40,9 +36,6 @@ index 488e3ff..f69e07e 100644 obj-$(CONFIG_DMA_OMAP) += omap-dma.o obj-$(CONFIG_MMP_PDMA) += mmp_pdma.o +obj-$(CONFIG_RALINK_GDMA) += ralink_gdma.o -diff --git a/drivers/dma/ralink_gdma.c b/drivers/dma/ralink_gdma.c -new file mode 100644 -index 0000000..be7c317 --- /dev/null +++ b/drivers/dma/ralink_gdma.c @@ -0,0 +1,229 @@ @@ -275,9 +268,6 @@ index 0000000..be7c317 +MODULE_AUTHOR("John Crispin <blogic@openwrt.org>"); +MODULE_DESCRIPTION("DMA engine driver for Ralink DMA engine"); +MODULE_LICENSE("GPL"); -diff --git a/drivers/dma/ralink_gdma.h b/drivers/dma/ralink_gdma.h -new file mode 100644 -index 0000000..73e1948 --- /dev/null +++ b/drivers/dma/ralink_gdma.h @@ -0,0 +1,55 @@ @@ -336,6 +326,3 @@ index 0000000..73e1948 +#define RT_DMA_DONEINT (RALINK_GDMA_BASE + 0x204) + +#endif --- -1.7.10.4 - |