It will work with this patch:
--- linux/drivers/scsi/ncr53c8xx.c Sun Jul 4 18:53:12 1999
+++ v2.3.13/drivers/scsi/ncr53c8xx.c Tue Aug 10 19:17:35 1999
@@ -9628,6 +9628,7 @@
return offset;
}
#else /* LINUX_VERSION_CODE > LinuxVersionCode(2,1,92) */
+#if LINUX_VERSION_CODE <= LinuxVersionCode(2,3,12)
__initfunc(
static int
pci_get_base_address(struct pci_dev *pdev, int index, u_long *base)
@@ -9642,6 +9643,17 @@
}
return index;
}
+#else /* LINUX_VERSION_CODE > LinuxVersionCode(2,3,12) */
+__initfunc(
+static int
+pci_get_base_address(struct pci_dev *pdev, int index, u_long *base)
+)
+{
+ *base = (pdev->resource[index].start|pdev->resource[index].flags);
+ index++;
+ return index;
+}
+#endif
#endif
/*
so long
calle
>
> Regards
> Joerg
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.rutgers.edu
> Please read the FAQ at http://www.tux.org/lkml/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/