[SCSI] initio: fix conflict when loading driver

> I have a scanner connected to a Initio INI-950 SCSI card and I recently
> upgraded from SuSE 10.2 to 10.3. The new kernel doesn't see any of my
> devices. I get the following in /var/log/messages:
>
> ACPI: PCI Interrupt 0000:00:0a.0[A] -> GSI 17 (level, low) -> IRQ 16
> initio: I/O port range 0x0 is busy.
> ACPI: PCI interrupt for device 0000:00:0a.0 disabled

Humm not a collision - thats a bug in the driver updating. Looks like the
changes I made and combined with Christoph's lost a line somewhere when I
was merging it all.

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

authored by Alan Cox and committed by James Bottomley 99f1f534 cedefa13

+1
+1
drivers/scsi/initio.c
··· 2867 } 2868 host = (struct initio_host *)shost->hostdata; 2869 memset(host, 0, sizeof(struct initio_host)); 2870 2871 if (!request_region(host->addr, 256, "i91u")) { 2872 printk(KERN_WARNING "initio: I/O port range 0x%x is busy.\n", host->addr);
··· 2867 } 2868 host = (struct initio_host *)shost->hostdata; 2869 memset(host, 0, sizeof(struct initio_host)); 2870 + host->addr = pci_resource_start(pdev, 0); 2871 2872 if (!request_region(host->addr, 256, "i91u")) { 2873 printk(KERN_WARNING "initio: I/O port range 0x%x is busy.\n", host->addr);