vserver 2.0 rc7
[linux-2.6.git] / drivers / scsi / lasi700.c
index 25729f3..4cbb618 100644 (file)
@@ -111,8 +111,8 @@ lasi700_probe(struct parisc_device *dev)
        memset(hostdata, 0, sizeof(struct NCR_700_Host_Parameters));
 
        hostdata->dev = &dev->dev;
-       dma_set_mask(&dev->dev, 0xffffffffUL);
-       hostdata->base = base;
+       dma_set_mask(&dev->dev, DMA_32BIT_MASK);
+       hostdata->base = ioremap(base, 0x100);
        hostdata->differential = 0;
 
        if (dev->id.sversion == LASI_700_SVERSION) {
@@ -127,17 +127,26 @@ lasi700_probe(struct parisc_device *dev)
 
        NCR_700_set_mem_mapped(hostdata);
 
-       host = NCR_700_detect(&lasi700_template, hostdata, &dev->dev,
-                             dev->irq, 7);
+       host = NCR_700_detect(&lasi700_template, hostdata, &dev->dev);
        if (!host)
                goto out_kfree;
+       host->this_id = 7;
+       host->base = base;
+       host->irq = dev->irq;
+       if(request_irq(dev->irq, NCR_700_intr, SA_SHIRQ, "lasi700", host)) {
+               printk(KERN_ERR "lasi700: request_irq failed!\n");
+               goto out_put_host;
+       }
 
        dev_set_drvdata(&dev->dev, host);
        scsi_scan_host(host);
 
        return 0;
 
+ out_put_host:
+       scsi_host_put(host);
  out_kfree:
+       iounmap(hostdata->base);
        kfree(hostdata);
        return -ENODEV;
 }
@@ -152,6 +161,7 @@ lasi700_driver_remove(struct parisc_device *dev)
        scsi_remove_host(host);
        NCR_700_release(host);
        free_irq(host->irq, host);
+       iounmap(hostdata->base);
        kfree(hostdata);
 
        return 0;