Commit 596b565b authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu

Blackfin arch: request_dma() returns 0 on success, not channel

Signed-off-by: default avatarMike Frysinger <vapier.adi@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent 6ab729d8
...@@ -135,7 +135,7 @@ int request_dma(unsigned int channel, const char *device_id) ...@@ -135,7 +135,7 @@ int request_dma(unsigned int channel, const char *device_id)
* descriptor/channel * descriptor/channel
*/ */
pr_debug("request_dma() : END \n"); pr_debug("request_dma() : END \n");
return channel; return 0;
} }
EXPORT_SYMBOL(request_dma); EXPORT_SYMBOL(request_dma);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment