summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-02-11 13:52:47 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-02-11 21:44:17 -0800
commitb427572ebff3abba436a9ae45db73c78fa3ddcf8 (patch)
tree76bcbb92c3cc9fd9441b2b617cb29b950cd7b1fb /drivers
parenta0b5542df26b6d2fccb611c05ea1cb266456b60c (diff)
greybus: core: add device prefix to error messages
Use dev_err and dev_warn where appropriate and remove now unused pr_fmt defines. Testing Done: Tested on DB3.5 with the generic bridge firmware on APB2. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/greybus/debugfs.c2
-rw-r--r--drivers/staging/greybus/hd.c4
-rw-r--r--drivers/staging/greybus/operation.c2
3 files changed, 2 insertions, 6 deletions
diff --git a/drivers/staging/greybus/debugfs.c b/drivers/staging/greybus/debugfs.c
index 725565de5d43..a9d4d3da99a0 100644
--- a/drivers/staging/greybus/debugfs.c
+++ b/drivers/staging/greybus/debugfs.c
@@ -7,8 +7,6 @@
* Released under the GPLv2 only.
*/
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
#include <linux/debugfs.h>
#include "greybus.h"
diff --git a/drivers/staging/greybus/hd.c b/drivers/staging/greybus/hd.c
index d1aab29d3da4..147a92d14cfc 100644
--- a/drivers/staging/greybus/hd.c
+++ b/drivers/staging/greybus/hd.c
@@ -7,8 +7,6 @@
* Released under the GPLv2 only.
*/
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
#include <linux/kernel.h>
#include <linux/slab.h>
@@ -55,7 +53,7 @@ struct gb_host_device *gb_hd_create(struct gb_hd_driver *driver,
* so that we don't have to every time we make them.
*/
if ((!driver->message_send) || (!driver->message_cancel)) {
- pr_err("Must implement all gb_hd_driver callbacks!\n");
+ dev_err(parent, "mandatory hd-callbacks missing\n");
return ERR_PTR(-EINVAL);
}
diff --git a/drivers/staging/greybus/operation.c b/drivers/staging/greybus/operation.c
index d6b3d1f22b28..bd79f81da020 100644
--- a/drivers/staging/greybus/operation.c
+++ b/drivers/staging/greybus/operation.c
@@ -327,7 +327,7 @@ gb_operation_message_alloc(struct gb_host_device *hd, u8 type,
size_t message_size = payload_size + sizeof(*header);
if (message_size > hd->buffer_size_max) {
- pr_warn("requested message size too big (%zu > %zu)\n",
+ dev_warn(&hd->dev, "requested message size too big (%zu > %zu)\n",
message_size, hd->buffer_size_max);
return NULL;
}