summaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/files/drivers/block/rb500/bdev.c
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-04-07 21:49:05 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-04-07 21:49:05 +0000
commitc26ad84f74fc5ea27f6ce2a0f99478c72d9b71e1 (patch)
treef34d07904c8fc021caed0d2135562906f0e57797 /target/linux/rb532/files/drivers/block/rb500/bdev.c
parentc8748126906b1a7c3571d2b17d69ea3e0d3e4cae (diff)
GPIO code updates, make the cf-mips driver compile against this gpio version
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10768 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/rb532/files/drivers/block/rb500/bdev.c')
-rw-r--r--target/linux/rb532/files/drivers/block/rb500/bdev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/rb532/files/drivers/block/rb500/bdev.c b/target/linux/rb532/files/drivers/block/rb500/bdev.c
index e4532739b..f8a9b02d7 100644
--- a/target/linux/rb532/files/drivers/block/rb500/bdev.c
+++ b/target/linux/rb532/files/drivers/block/rb500/bdev.c
@@ -23,6 +23,7 @@
#include <asm/uaccess.h>
#include <asm/io.h>
+#include <asm/gpio.h>
#include <asm/rc32434/rb.h>
@@ -242,7 +243,7 @@ static int cf_open(struct inode *inode, struct file *filp)
/* dirty workaround to set CFRDY GPIO as an input when some other
program sets it as an output */
- gpio_set(CFG, (1 << dev->pin), 0);
+ gpio_set_value(dev->pin, 0);
return 0; /* success */
}