aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaitanya Kulkarni <[email protected]>2021-01-25 15:32:35 -0800
committerThomas Bogendoerfer <[email protected]>2021-02-21 23:37:52 +0100
commitf1e19224f5948ae61ff9972d35d3cd7176815cd9 (patch)
treed032f1d43b4061b0a9d74ada92dfadd372912c47
parentd9b2a2bbbb4d0bc89129504eb1503bb8506158ed (diff)
n64: use pr_fmt to avoid duplicate string
Instead of repeating the n64cart string all over the module use pr_fmt macro and remove the duplicate string. Also, replace and with or in the one of the error message. Signed-off-by: Chaitanya Kulkarni <[email protected]> Reviewed-by: Lauri Kasanen <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
-rw-r--r--drivers/block/n64cart.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/block/n64cart.c b/drivers/block/n64cart.c
index e76722acba46..8c7c9249071b 100644
--- a/drivers/block/n64cart.c
+++ b/drivers/block/n64cart.c
@@ -5,6 +5,7 @@
* Copyright (c) 2021 Lauri Kasanen
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/bitops.h>
#include <linux/blkdev.h>
#include <linux/dma-mapping.h>
@@ -117,12 +118,12 @@ static int __init n64cart_probe(struct platform_device *pdev)
struct gendisk *disk;
if (!start || !size) {
- pr_err("n64cart: start and size not specified\n");
+ pr_err("start or size not specified\n");
return -ENODEV;
}
if (size & 4095) {
- pr_err("n64cart: size must be a multiple of 4K\n");
+ pr_err("size must be a multiple of 4K\n");
return -ENODEV;
}