diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-14 15:52:42 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-14 15:52:42 +0000 |
commit | 26e3776a22bf894ced5af4c28968dc1dc99968eb (patch) | |
tree | 2d38a3789e27a423439c37a45a09cae31990a615 /target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch | |
parent | 4bd70fc26256cf485f19e0c8b881e078dc36134f (diff) |
nuke obsolete kernel stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14875 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch')
-rwxr-xr-x | target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch b/target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch deleted file mode 100755 index ca57daf52..000000000 --- a/target/linux/s3c24xx/patches-2.6.26/1252-The-driver-should-be-checking-for-a-negative-error-c.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 31ab776ee952e5ef6e0a21be276686b84187fcaa Mon Sep 17 00:00:00 2001 -From: Ben Dooks <ben-linux@fluff.org> -Date: Sun, 10 Aug 2008 09:29:14 +0100 -Subject: [PATCH] The driver should be checking for a negative error code from - s3c2410_dma_request(), not non-zero. Newer kernels now return - the DMA channel number that was allocated by the request. - -Signed-off-by: Ben Dooks <ben-linux@fluff.org> -Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> -(cherry picked from commit 3886ff5f63f33c801ed3af265ac0df20d3a8dcf5) ---- - drivers/mmc/host/s3cmci.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c -index 107847a..ffba0f9 100644 ---- a/drivers/mmc/host/s3cmci.c -+++ b/drivers/mmc/host/s3cmci.c -@@ -1230,7 +1230,7 @@ static int s3cmci_probe(struct platform_device *pdev, int is2440) - s3c2410_gpio_cfgpin(host->pdata->gpio_wprotect, - S3C2410_GPIO_INPUT); - -- if (s3c2410_dma_request(host->dma, &s3cmci_dma_client, NULL)) { -+ if (s3c2410_dma_request(host->dma, &s3cmci_dma_client, NULL) < 0) { - dev_err(&pdev->dev, "unable to get DMA channel.\n"); - ret = -EBUSY; - goto probe_free_irq; --- -1.5.6.3 - |