From 845092569c227454f28d77e647d386ab7cc1419f Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Fri, 12 Dec 2008 00:02:36 +0000 Subject: add support for target 3c24xx (more known as Openmoko GTA02 "Freerunner") and merge it with the openmoko-target and the work Michael Buesch did git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13609 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...6.25-changed-s3c2410_dma_request-reurn.pa.patch | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 target/linux/s3c24xx/patches/0126-tracking-2.6.25-changed-s3c2410_dma_request-reurn.pa.patch (limited to 'target/linux/s3c24xx/patches/0126-tracking-2.6.25-changed-s3c2410_dma_request-reurn.pa.patch') diff --git a/target/linux/s3c24xx/patches/0126-tracking-2.6.25-changed-s3c2410_dma_request-reurn.pa.patch b/target/linux/s3c24xx/patches/0126-tracking-2.6.25-changed-s3c2410_dma_request-reurn.pa.patch new file mode 100755 index 0000000000..dac514583e --- /dev/null +++ b/target/linux/s3c24xx/patches/0126-tracking-2.6.25-changed-s3c2410_dma_request-reurn.pa.patch @@ -0,0 +1,44 @@ +From 6543660c429224f3cb8c9d16c786a521d0fc2969 Mon Sep 17 00:00:00 2001 +From: Andy Green +Date: Fri, 25 Jul 2008 23:06:06 +0100 +Subject: [PATCH] tracking-2.6.25-changed-s3c2410_dma_request-reurn.patch + +s3c2410_dma_request used to return 0 for OK and something else +for error, now it returns -ve error code or +ve dma channel index + flag + +Signed-off-by: Andy Green +--- + drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c | 3 ++- + sound/soc/s3c24xx/s3c24xx-pcm.c | 2 +- + 2 files changed, 3 insertions(+), 2 deletions(-) + +diff --git a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c +index 8c3bbbc..af0066d 100644 +--- a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c ++++ b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c +@@ -1192,7 +1192,8 @@ static int s3c24xx_hcd_hw_init(struct s3c24xx_hcd_context * context) + + } + +- if (s3c2410_dma_request(context->dma_channel, &s3c24xx_hcd_dma_client, NULL)) { ++ if (s3c2410_dma_request(context->dma_channel, &s3c24xx_hcd_dma_client, ++ NULL) < 0) { + DBG_PRINT(SDDBG_ERROR, ("unable to get DMA channel.\n")); + status = -ENOENT; + goto out_free_dma; +diff --git a/sound/soc/s3c24xx/s3c24xx-pcm.c b/sound/soc/s3c24xx/s3c24xx-pcm.c +index 7806ae6..40abef1 100644 +--- a/sound/soc/s3c24xx/s3c24xx-pcm.c ++++ b/sound/soc/s3c24xx/s3c24xx-pcm.c +@@ -172,7 +172,7 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream, + prtd->params->client, NULL); + + if (ret < 0) { +- DBG(KERN_ERR "failed to get dma channel\n"); ++ DBG(KERN_ERR "failed to get dma channel: %d\n", ret); + return ret; + } + } +-- +1.5.6.3 + -- cgit v1.2.3