ide: cleanup ide_find_port()
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Sat, 26 Apr 2008 15:36:32 +0000 (17:36 +0200)
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Sat, 26 Apr 2008 15:36:32 +0000 (17:36 +0200)
Remove no longer needed matching against I/O base and 'base' argument.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
19 files changed:
drivers/ide/arm/bast-ide.c
drivers/ide/arm/icside.c
drivers/ide/arm/ide_arm.c
drivers/ide/arm/palm_bk3710.c
drivers/ide/arm/rapide.c
drivers/ide/cris/ide-cris.c
drivers/ide/h8300/ide-h8300.c
drivers/ide/ide-generic.c
drivers/ide/ide-pnp.c
drivers/ide/ide.c
drivers/ide/legacy/buddha.c
drivers/ide/legacy/falconide.c
drivers/ide/legacy/gayle.c
drivers/ide/legacy/ide-cs.c
drivers/ide/legacy/ide_platform.c
drivers/ide/legacy/macide.c
drivers/ide/legacy/q40ide.c
drivers/ide/pci/delkin_cb.c
include/linux/ide.h

index ec46c44b061cfaa27342ce31e03ef7a2b9c2f9e4..3bd2c6dcd80b9a72ec7478d17606744c0de882ee 100644 (file)
@@ -41,7 +41,7 @@ static int __init bastide_register(unsigned int base, unsigned int aux, int irq)
        hw.io_ports[IDE_CONTROL_OFFSET] = aux + (6 * 0x20);
        hw.irq = irq;
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif == NULL)
                goto out;
 
index e816b0ffcfe647a1899161225708014271316517..fd12bbe93f113db5926f033e83f16ba6173a7a1c 100644 (file)
@@ -400,7 +400,7 @@ icside_setup(void __iomem *base, struct cardinfo *info, struct expansion_card *e
        unsigned long port = (unsigned long)base + info->dataoffset;
        ide_hwif_t *hwif;
 
-       hwif = ide_find_port(port);
+       hwif = ide_find_port();
        if (hwif) {
                int i;
 
index be9ff7334c529b81cff974961d3bf4c40357e8c6..82643df7c49aff546d487fd81067b180ea153441 100644 (file)
@@ -34,7 +34,7 @@ static int __init ide_arm_init(void)
        ide_std_init_ports(&hw, IDE_ARM_IO, IDE_ARM_IO + 0x206);
        hw.irq = IDE_ARM_IRQ;
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif) {
                ide_init_port_hw(hwif, &hw);
                idx[0] = hwif->index;
index 420fcb78a7cd15215b7b476b7cd57b378c71308f..caa419404daa947b6b35a24a1074f7483ab14e33 100644 (file)
@@ -378,7 +378,7 @@ static int __devinit palm_bk3710_probe(struct platform_device *pdev)
        hw.irq = irq->start;
        hw.chipset = ide_palm3710;
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif == NULL)
                goto out;
 
index b30adcf321c3dcfdcafe27c79678c0845e9f5cf8..2c3d0ec91dc3d5053abdcb252be75695747ff1f4 100644 (file)
@@ -44,7 +44,7 @@ rapide_probe(struct expansion_card *ec, const struct ecard_id *id)
                goto release;
        }
 
-       hwif = ide_find_port((unsigned long)base);
+       hwif = ide_find_port();
        if (hwif) {
                memset(&hw, 0, sizeof(hw));
                rapide_setup_ports(&hw, base, base + 0x818, 1 << 6, ec->irq);
index 31266d278095e025ca905b5b7b8a22f85f6f6ffc..790a7759d455ce83901006b9cef983279f05dc78 100644 (file)
@@ -804,7 +804,7 @@ static int __init init_e100_ide(void)
 
                cris_setup_ports(&hw, cris_ide_base_address(h));
 
-               hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+               hwif = ide_find_port();
                if (hwif == NULL)
                        continue;
                ide_init_port_data(hwif, hwif->index);
index 4108ec4ffa7fb40da200a8da5abcd6aefc72f867..92b02b96d7db813b11f1d5352db61bee7db67060 100644 (file)
@@ -99,8 +99,7 @@ static int __init h8300_ide_init(void)
 
        hw_setup(&hw);
 
-       /* register if */
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif == NULL) {
                printk(KERN_ERR "ide-h8300: IDE I/F register failed\n");
                return -ENOENT;
index 25fda0a3263fea4603d67121f4b0df29b2195a54..f3ec02ed4492a22b53df0636df76b60bc9aa9700 100644 (file)
@@ -33,7 +33,7 @@ static ssize_t store_add(struct class *cls, const char *buf, size_t n)
        if (sscanf(buf, "%x:%x:%d", &base, &ctl, &irq) != 3)
                return -EINVAL;
 
-       hwif = ide_find_port(base);
+       hwif = ide_find_port();
        if (hwif == NULL)
                return -ENOENT;
 
index 34c2ad36ce54641586d85f6188d52cd4521b12af..efc193602bf8b6e3cb1f2887fd3a38909efc48c6 100644 (file)
@@ -38,7 +38,7 @@ static int idepnp_probe(struct pnp_dev * dev, const struct pnp_device_id *dev_id
                                pnp_port_start(dev, 1));
        hw.irq = pnp_irq(dev, 0);
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif) {
                u8 index = hwif->index;
                u8 idx[4] = { index, 0xff, 0xff, 0xff };
index 917c72dcd33dccc806c42c20d9662750ebe52b89..4ca511156a110ed816e9ab8f6eb8ace19772ca90 100644 (file)
@@ -232,28 +232,19 @@ static int ide_system_bus_speed(void)
        return pci_dev_present(pci_default) ? 33 : 50;
 }
 
-ide_hwif_t * ide_find_port(unsigned long base)
+ide_hwif_t *ide_find_port(void)
 {
        ide_hwif_t *hwif;
        int i;
 
-       for (i = 0; i < MAX_HWIFS; i++) {
-               hwif = &ide_hwifs[i];
-               if (hwif->io_ports[IDE_DATA_OFFSET] == base)
-                       goto found;
-       }
-
        for (i = 0; i < MAX_HWIFS; i++) {
                hwif = &ide_hwifs[i];
                if (hwif->chipset == ide_unknown)
-                       goto found;
+                       return hwif;
        }
 
-       hwif = NULL;
-found:
-       return hwif;
+       return NULL;
 }
-
 EXPORT_SYMBOL_GPL(ide_find_port);
 
 static struct resource* hwif_request_region(ide_hwif_t *hwif,
index fdd3791e465f0f5f028f58f907548b8cf7140cfe..6956eb8f2d5f4fedb12349797bad15ec45ab40f1 100644 (file)
@@ -221,7 +221,7 @@ fail_base2:
 
                        buddha_setup_ports(&hw, base, ctl, irq_port, ack_intr);
 
-                       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+                       hwif = ide_find_port();
                        if (hwif) {
                                u8 index = hwif->index;
 
index e950afa5939c545f2b615df5f785dbea89692296..b88a3c192d84cff128bb60eb34b8be06f2340c2d 100644 (file)
@@ -76,7 +76,7 @@ static int __init falconide_init(void)
 
        falconide_setup_ports(&hw);
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif) {
                u8 index = hwif->index;
                u8 idx[4] = { index, 0xff, 0xff, 0xff };
index e3b4638cc88389e85ade16a074401a6b74d256e4..fcc8d52bf2a1acb72e58a040ab6e295d2a61a2b1 100644 (file)
@@ -175,7 +175,7 @@ found:
 
        gayle_setup_ports(&hw, base, ctrlport, irqport, ack_intr);
 
-       hwif = ide_find_port(base);
+       hwif = ide_find_port();
        if (hwif) {
            u8 index = hwif->index;
 
index 9a23b94f293950f960a0e7aa8ea85d14002fee93..b97b8d51b3eb9b246d5538294203cf1ed51f2989 100644 (file)
@@ -156,7 +156,7 @@ static int idecs_register(unsigned long io, unsigned long ctl, unsigned long irq
     hw.chipset = ide_pci;
     hw.dev = &handle->dev;
 
-    hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+    hwif = ide_find_port();
     if (hwif == NULL)
        return -1;
 
index 361b1bb544bf442ccf136aadd316839d4ae24f4e..ffa57c1175d0e4783ab0fc2e05628d65196d9e9c 100644 (file)
@@ -89,7 +89,7 @@ static int __devinit plat_ide_probe(struct platform_device *pdev)
                        res_alt->start, res_alt->end - res_alt->start + 1);
        }
 
-       hwif = ide_find_port((unsigned long)base);
+       hwif = ide_find_port();
        if (!hwif) {
                ret = -ENODEV;
                goto out;
index eaf5dbe58bc24eeca32e09349348ff29dc35cbc1..7429b80cb0892c747eb46a38201dde0238f16e43 100644 (file)
@@ -120,7 +120,7 @@ static int __init macide_init(void)
 
        macide_setup_ports(&hw, base, irq, ack_intr);
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif) {
                u8 index = hwif->index;
                u8 idx[4] = { index, 0xff, 0xff, 0xff };
index 2da28759686ec5be154c241a4a5ac6875ac3f4b3..fcbff0eced1b0a80b6595183a7e1b9b3a9c3a329 100644 (file)
@@ -137,7 +137,7 @@ static int __init q40ide_init(void)
 //                     m68kide_iops,
                        q40ide_default_irq(pcide_bases[i]));
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif) {
                ide_init_port_data(hwif, hwif->index);
                ide_init_port_hw(hwif, &hw);
index 961698d655eb6f2a9df206c726ce2ec0f14f055a..53857f8096674a709c83bb5e779b125f1e33e40d 100644 (file)
@@ -78,7 +78,7 @@ delkin_cb_probe (struct pci_dev *dev, const struct pci_device_id *id)
        hw.irq = dev->irq;
        hw.chipset = ide_pci;           /* this enables IRQ sharing */
 
-       hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
+       hwif = ide_find_port();
        if (hwif == NULL)
                goto out_disable;
 
index 5f3e82ae901a94a54a7e99602dca5f06052191d4..c5728dd5d9d9214fcb19482552460205232f3bc0 100644 (file)
@@ -170,7 +170,7 @@ typedef struct hw_regs_s {
        struct device   *dev;
 } hw_regs_t;
 
-struct hwif_s * ide_find_port(unsigned long);
+struct hwif_s *ide_find_port(void);
 void ide_init_port_data(struct hwif_s *, unsigned int);
 void ide_init_port_hw(struct hwif_s *, hw_regs_t *);