linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm/mxc: make imx_dma_is_general_purpose more generic for sdma
@ 2012-01-05  3:11 Richard Zhao
  2012-01-05  3:11 ` [PATCH 2/2] arm/imx6q: add cko1 clock Richard Zhao
  2012-01-05  9:42 ` [PATCH 1/2] arm/mxc: make imx_dma_is_general_purpose more generic for sdma Shawn Guo
  0 siblings, 2 replies; 6+ messages in thread
From: Richard Zhao @ 2012-01-05  3:11 UTC (permalink / raw)
  To: linux-arm-kernel

sdma device names var when use device tree. So we just check
whether it includes "sdma" substring.

Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
---
 arch/arm/plat-mxc/include/mach/dma.h |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/arm/plat-mxc/include/mach/dma.h b/arch/arm/plat-mxc/include/mach/dma.h
index 233d0a5..1b90803 100644
--- a/arch/arm/plat-mxc/include/mach/dma.h
+++ b/arch/arm/plat-mxc/include/mach/dma.h
@@ -60,8 +60,7 @@ static inline int imx_dma_is_ipu(struct dma_chan *chan)
 
 static inline int imx_dma_is_general_purpose(struct dma_chan *chan)
 {
-	return !strcmp(dev_name(chan->device->dev), "imx31-sdma") ||
-		!strcmp(dev_name(chan->device->dev), "imx35-sdma") ||
+	return strstr(dev_name(chan->device->dev), "sdma") ||
 		!strcmp(dev_name(chan->device->dev), "imx-dma");
 }
 
-- 
1.7.5.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-01-05 14:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-05  3:11 [PATCH 1/2] arm/mxc: make imx_dma_is_general_purpose more generic for sdma Richard Zhao
2012-01-05  3:11 ` [PATCH 2/2] arm/imx6q: add cko1 clock Richard Zhao
2012-01-05 13:53   ` Shawn Guo
2012-01-05 14:24     ` Richard Zhao
2012-01-05  9:42 ` [PATCH 1/2] arm/mxc: make imx_dma_is_general_purpose more generic for sdma Shawn Guo
2012-01-05 14:31   ` Richard Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).