Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309401
b: refs/heads/master
c: 4b98b32
h: refs/heads/master
i:
  309399: 4b97bdb
v: v3
  • Loading branch information
Randy Dunlap authored and Wim Van Sebroeck committed May 30, 2012
1 parent 0b46b25 commit f97fd3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: d9df0ef1eb9e1048f0ab4a6e93c85f60c5594c2f
refs/heads/master: 4b98b32aefb2c143a40cdaa254eb905f1bb06b5d
6 changes: 3 additions & 3 deletions trunk/drivers/watchdog/iTCO_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ static int __devinit iTCO_wdt_probe(struct platform_device *dev)
if (!request_region(iTCO_wdt_private.smi_res->start,
resource_size(iTCO_wdt_private.smi_res), dev->name)) {
pr_err("I/O address 0x%04llx already in use, device disabled\n",
SMI_EN);
(u64)SMI_EN);
ret = -EBUSY;
goto unmap_gcs;
}
Expand All @@ -592,13 +592,13 @@ static int __devinit iTCO_wdt_probe(struct platform_device *dev)
if (!request_region(iTCO_wdt_private.tco_res->start,
resource_size(iTCO_wdt_private.tco_res), dev->name)) {
pr_err("I/O address 0x%04llx already in use, device disabled\n",
TCOBASE);
(u64)TCOBASE);
ret = -EBUSY;
goto unreg_smi;
}

pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
ich_info->name, ich_info->iTCO_version, TCOBASE);
ich_info->name, ich_info->iTCO_version, (u64)TCOBASE);

/* Clear out the (probably old) status */
outw(0x0008, TCO1_STS); /* Clear the Time Out Status bit */
Expand Down

0 comments on commit f97fd3d

Please sign in to comment.