Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 163623
b: refs/heads/master
c: d1833c2
h: refs/heads/master
i:
  163621: f90bae3
  163619: 994392a
  163615: e4dc0bb
v: v3
  • Loading branch information
Randy Dunlap authored and Wim Van Sebroeck committed Sep 18, 2009
1 parent 086eef7 commit 3f481ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 119d3e56e7c82a73d27b5dd010c52dab1bc9f846
refs/heads/master: d1833c21256e7b0ac3997493d31f0f3926f6d592
10 changes: 5 additions & 5 deletions trunk/drivers/watchdog/wdt_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static unsigned long open_lock;
static DEFINE_SPINLOCK(wdtpci_lock);
static char expect_close;

static int io;
static resource_size_t io;
static int irq;

/* Default timeout */
Expand Down Expand Up @@ -648,8 +648,8 @@ static int __devinit wdtpci_init_one(struct pci_dev *dev,
}

if (pci_request_region(dev, 2, "wdt_pci")) {
printk(KERN_ERR PFX "I/O address 0x%04x already in use\n",
pci_resource_start(dev, 2));
printk(KERN_ERR PFX "I/O address 0x%llx already in use\n",
(unsigned long long)pci_resource_start(dev, 2));
goto out_pci;
}

Expand All @@ -663,8 +663,8 @@ static int __devinit wdtpci_init_one(struct pci_dev *dev,
}

printk(KERN_INFO
"PCI-WDT500/501 (PCI-WDG-CSM) driver 0.10 at 0x%04x (Interrupt %d)\n",
io, irq);
"PCI-WDT500/501 (PCI-WDG-CSM) driver 0.10 at 0x%llx (Interrupt %d)\n",
(unsigned long long)io, irq);

/* Check that the heartbeat value is within its range;
if not reset to the default */
Expand Down

0 comments on commit 3f481ca

Please sign in to comment.