[PATCH 2/2] ramoops: add new line to printks

From: Marco Stornelli
Date: Tue Jun 07 2011 - 12:58:13 EST


From: Marco Stornelli <marco.stornelli@xxxxxxxxx>

Add new line to each printk.

Signed-off-by: Marco Stornelli <marco.stornelli@xxxxxxxxx>
CC: Kyungmin Park <kyungmin.park@xxxxxxxxxxx>
CC: Américo Wang <xiyou.wangcong@xxxxxxxxx>
Reported-by: Stevie Trujillo <stevie.trujillo@xxxxxxxxx>
---
diff --git a/drivers/char/ramoops.c b/drivers/char/ramoops.c
index df092e1..20e9d3e 100644
--- a/drivers/char/ramoops.c
+++ b/drivers/char/ramoops.c
@@ -111,14 +111,14 @@ static int __init ramoops_probe(struct platform_device *pdev)
int err = -EINVAL;

if (!pdata->mem_size) {
- printk(KERN_ERR "ramoops: invalid size specification");
+ printk(KERN_ERR "ramoops: invalid size specification\n");
goto fail3;
}

rounddown_pow_of_two(pdata->mem_size);

if (pdata->mem_size < RECORD_SIZE) {
- printk(KERN_ERR "ramoops: size too small");
+ printk(KERN_ERR "ramoops: size too small\n");
goto fail3;
}

@@ -128,21 +128,21 @@ static int __init ramoops_probe(struct platform_device *pdev)
cxt->phys_addr = pdata->mem_address;

if (!request_mem_region(cxt->phys_addr, cxt->size, "ramoops")) {
- printk(KERN_ERR "ramoops: request mem region failed");
+ printk(KERN_ERR "ramoops: request mem region failed\n");
err = -EINVAL;
goto fail3;
}

cxt->virt_addr = ioremap(cxt->phys_addr, cxt->size);
if (!cxt->virt_addr) {
- printk(KERN_ERR "ramoops: ioremap failed");
+ printk(KERN_ERR "ramoops: ioremap failed\n");
goto fail2;
}

cxt->dump.dump = ramoops_do_dump;
err = kmsg_dump_register(&cxt->dump);
if (err) {
- printk(KERN_ERR "ramoops: registering kmsg dumper failed");
+ printk(KERN_ERR "ramoops: registering kmsg dumper failed\n");
goto fail1;
}

@@ -161,7 +161,7 @@ static int __exit ramoops_remove(struct platform_device *pdev)
struct ramoops_context *cxt = &oops_cxt;

if (kmsg_dump_unregister(&cxt->dump) < 0)
- printk(KERN_WARNING "ramoops: could not unregister kmsg_dumper");
+ printk(KERN_WARNING "ramoops: could not unregister kmsg_dumper\n");

iounmap(cxt->virt_addr);
release_mem_region(cxt->phys_addr, cxt->size);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/