projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db9b85c
)
[ARM] 4787/1: S3C24XX: s3c2410_dma_request() should return the allocated channel...
author
Ben Dooks
<ben-linux@fluff.org>
Mon, 28 Jan 2008 12:01:27 +0000
(13:01 +0100)
committer
Russell King
<rmk+kernel@arm.linux.org.uk>
Mon, 28 Jan 2008 13:20:51 +0000
(13:20 +0000)
The s3c2410_dma_request() function should return the channel allocated
instead of zero for success.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/plat-s3c24xx/dma.c
patch
|
blob
|
history
diff --git
a/arch/arm/plat-s3c24xx/dma.c
b/arch/arm/plat-s3c24xx/dma.c
index 68ce89db17dbe46ea053e00437700ee1bedbc765..9785983dfbae00e958c8fa65f357e6278992f479 100644
(file)
--- a/
arch/arm/plat-s3c24xx/dma.c
+++ b/
arch/arm/plat-s3c24xx/dma.c
@@
-787,7
+787,7
@@
int s3c2410_dma_request(unsigned int channel,
pr_debug("%s: channel initialised, %p\n", __FUNCTION__, chan);
- return
0
;
+ return
chan->number | DMACH_LOW_LEVEL
;
}
EXPORT_SYMBOL(s3c2410_dma_request);