Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304732
b: refs/heads/master
c: d109a67
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Greg Kroah-Hartman committed May 16, 2012
1 parent 4299233 commit 1b3255d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: 9ba80d99c86f1b76df891afdf39b44df38bbd35b
refs/heads/master: d109a674a3685d43f16da5cc4cb8b927d07c436d
5 changes: 3 additions & 2 deletions trunk/drivers/char/ramoops.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ static int __init ramoops_probe(struct platform_device *pdev)

if (!request_mem_region(cxt->phys_addr, cxt->size, "ramoops")) {
pr_err("request mem region (0x%lx@0x%llx) failed\n",
cxt->size, cxt->phys_addr);
cxt->size, (unsigned long long)cxt->phys_addr);
err = -EINVAL;
goto fail_buf;
}
Expand All @@ -270,7 +270,8 @@ static int __init ramoops_probe(struct platform_device *pdev)
dump_oops = pdata->dump_oops;

pr_info("attached 0x%lx@0x%llx (%ux0x%zx)\n",
cxt->size, cxt->phys_addr, cxt->max_count, cxt->record_size);
cxt->size, (unsigned long long)cxt->phys_addr,
cxt->max_count, cxt->record_size);

return 0;

Expand Down

0 comments on commit 1b3255d

Please sign in to comment.