summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorQuinn Jensen <quinn.jensen@freescale.com>2007-05-24 18:02:47 -0600
committerQuinn Jensen <quinn.jensen@freescale.com>2007-05-24 18:02:47 -0600
commit22cb53920c6532e4918f80569274424afb09a4d3 (patch)
tree29a16577c0047910095325c0f7ad0a0b4faf322a /arch
parentd5096dbcf7c0e74172a8a43dd1dd811bc9ebc598 (diff)
Remove erroneous semicolons in two function definitions:
mxc_dma_config() and mxc_dma_enable() in the #else path of #ifdef CONFIG_MXC_SDMA_API. http://www.bitshrine.org/gpp/linux-2.6.19.2-mx-remove_erroneous_semicolons.patch
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/plat-mxc/sdma/dma_sdma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-mxc/sdma/dma_sdma.c b/arch/arm/plat-mxc/sdma/dma_sdma.c
index 5ea593615865..6ea3a747de01 100644
--- a/arch/arm/plat-mxc/sdma/dma_sdma.c
+++ b/arch/arm/plat-mxc/sdma/dma_sdma.c
@@ -612,7 +612,7 @@ int mxc_dma_free(int channel_num)
}
int mxc_dma_config(int channel_num, mxc_dma_requestbuf_t * dma_buf,
- int num_buf, mxc_dma_mode_t mode);
+ int num_buf, mxc_dma_mode_t mode)
{
return -ENODEV;
}
@@ -634,7 +634,7 @@ int mxc_dma_disable(int channel_num)
return -ENODEV;
}
-int mxc_dma_enable(int channel_num);
+int mxc_dma_enable(int channel_num)
{
return -ENODEV;
}