mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
CF driver cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9473 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -16,8 +16,9 @@
|
||||
#include <linux/pci.h>
|
||||
#include <linux/ioport.h> /* request_mem_region() */
|
||||
|
||||
#include <asm/unaligned.h> /* ioremap() */
|
||||
#include <asm/io.h> /* ioremap() */
|
||||
#include <asm/unaligned.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/gpio.h>
|
||||
|
||||
#include <gpio.h>
|
||||
#include <adm5120_defs.h>
|
||||
@@ -69,7 +70,7 @@ static inline u8 rareg(unsigned reg, struct cf_mips_dev* dev)
|
||||
|
||||
static inline int cfrdy(struct cf_mips_dev *dev)
|
||||
{
|
||||
return (SW_READ_REG(GPIO_CONF0) & (1 << 12));
|
||||
return gpio_get_value(12);
|
||||
}
|
||||
|
||||
static inline void prepare_cf_irq(struct cf_mips_dev *dev)
|
||||
@@ -92,7 +93,7 @@ static inline int cf_present(struct cf_mips_dev* dev)
|
||||
int i;
|
||||
|
||||
/* on RB100 WAIT is LOW all the time => read will hang */
|
||||
if (SW_READ_REG(GPIO_CONF0) & (1 << 8))
|
||||
if (gpio_read_value(8))
|
||||
cmd |= EXTIO_WAIT_EN;
|
||||
|
||||
SW_WRITE_REG(GPIO_CONF2, cmd);
|
||||
|
||||
@@ -93,10 +93,10 @@ int cf_mips_probe(struct platform_device *pdev)
|
||||
return reg_result;
|
||||
}
|
||||
|
||||
dev = (struct cf_mips_dev *)kmalloc(sizeof(struct cf_mips_dev),GFP_KERNEL);
|
||||
dev = (struct cf_mips_dev *)kzalloc(sizeof(struct cf_mips_dev),GFP_KERNEL);
|
||||
if (!dev)
|
||||
goto out_err;
|
||||
memset(dev, 0, sizeof(struct cf_mips_dev));
|
||||
|
||||
cdev->dev = dev;
|
||||
|
||||
dev->pin = cdev->gpio_pin;
|
||||
@@ -104,8 +104,9 @@ int cf_mips_probe(struct platform_device *pdev)
|
||||
r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cf_membase");
|
||||
dev->base = (void *) r->start;
|
||||
|
||||
if (cf_init(dev)) goto out_err;
|
||||
printk("init done");
|
||||
if (cf_init(dev))
|
||||
goto out_err;
|
||||
printk(KERN_INFO "cf-mips: init done");
|
||||
|
||||
spin_lock_init(&dev->lock);
|
||||
dev->queue = blk_init_queue(cf_request,&dev->lock);
|
||||
@@ -125,7 +126,9 @@ int cf_mips_probe(struct platform_device *pdev)
|
||||
dev->gd = alloc_disk(CF_MAX_PART);
|
||||
cf_gendisk = dev->gd;
|
||||
cdev->gd = dev->gd;
|
||||
if (!cf_gendisk) goto out_err; /* Last of these goto's */
|
||||
|
||||
if (!cf_gendisk)
|
||||
goto out_err; /* Last of these goto's */
|
||||
|
||||
cf_gendisk->major = MAJOR_NR;
|
||||
cf_gendisk->first_minor = 0;
|
||||
|
||||
Reference in New Issue
Block a user