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

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

parent 6ab729d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ int request_dma(unsigned int channel, const char *device_id)
	 * descriptor/channel
	 */
	pr_debug("request_dma() : END  \n");
	return channel;
	return 0;
}
EXPORT_SYMBOL(request_dma);