summaryrefslogtreecommitdiffstats
path: root/drivers/dma/s3c24xx-dma.c
diff options
context:
space:
mode:
authorDan Carpenter2013-11-07 08:52:00 +0100
committerVinod Koul2014-03-11 09:53:18 +0100
commit8f83f502290e75b927de65b2e26f56c2d4736fac (patch)
tree660e439a917656637ed040a423ad26e3ea2b0d22 /drivers/dma/s3c24xx-dma.c
parentdma: imx-dma: Add missing module owner field (diff)
downloadkernel-qcow2-linux-8f83f502290e75b927de65b2e26f56c2d4736fac.tar.gz
kernel-qcow2-linux-8f83f502290e75b927de65b2e26f56c2d4736fac.tar.xz
kernel-qcow2-linux-8f83f502290e75b927de65b2e26f56c2d4736fac.zip
dmaengine: s3c24xx-dma: make phy->irq signed for error handling
There is a bug in s3c24xx_dma_probe() where we do: phy->irq = platform_get_irq(pdev, i); if (phy->irq < 0) { The problem is that "phy->irq" is unsigned so the error handling doesn't work. I have changed it to signed. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/s3c24xx-dma.c')
-rw-r--r--drivers/dma/s3c24xx-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c
index 4eddedb6eb7d..b209a0f17344 100644
--- a/drivers/dma/s3c24xx-dma.c
+++ b/drivers/dma/s3c24xx-dma.c
@@ -192,7 +192,7 @@ struct s3c24xx_dma_phy {
unsigned int id;
bool valid;
void __iomem *base;
- unsigned int irq;
+ int irq;
struct clk *clk;
spinlock_t lock;
struct s3c24xx_dma_chan *serving;