|
@@ -732,15 +732,15 @@ static int __devinit dscc4_init_one(struct pci_dev *pdev,
|
|
ioaddr = ioremap(pci_resource_start(pdev, 0),
|
|
ioaddr = ioremap(pci_resource_start(pdev, 0),
|
|
pci_resource_len(pdev, 0));
|
|
pci_resource_len(pdev, 0));
|
|
if (!ioaddr) {
|
|
if (!ioaddr) {
|
|
- printk(KERN_ERR "%s: cannot remap MMIO region %lx @ %lx\n",
|
|
|
|
- DRV_NAME, pci_resource_len(pdev, 0),
|
|
|
|
- pci_resource_start(pdev, 0));
|
|
|
|
|
|
+ printk(KERN_ERR "%s: cannot remap MMIO region %llx @ %llx\n",
|
|
|
|
+ DRV_NAME, (unsigned long long)pci_resource_len(pdev, 0),
|
|
|
|
+ (unsigned long long)pci_resource_start(pdev, 0));
|
|
rc = -EIO;
|
|
rc = -EIO;
|
|
goto err_free_mmio_regions_2;
|
|
goto err_free_mmio_regions_2;
|
|
}
|
|
}
|
|
- printk(KERN_DEBUG "Siemens DSCC4, MMIO at %#lx (regs), %#lx (lbi), IRQ %d\n",
|
|
|
|
- pci_resource_start(pdev, 0),
|
|
|
|
- pci_resource_start(pdev, 1), pdev->irq);
|
|
|
|
|
|
+ printk(KERN_DEBUG "Siemens DSCC4, MMIO at %#llx (regs), %#llx (lbi), IRQ %d\n",
|
|
|
|
+ (unsigned long long)pci_resource_start(pdev, 0),
|
|
|
|
+ (unsigned long long)pci_resource_start(pdev, 1), pdev->irq);
|
|
|
|
|
|
/* Cf errata DS5 p.2 */
|
|
/* Cf errata DS5 p.2 */
|
|
pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xf8);
|
|
pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xf8);
|