lkml.org 
[lkml]   [2016]   [Aug]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH v5 2/2] mfd: dm355evm_msp: Change error messages in add_child()
From
Date
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 11 Aug 2016 14:00:43 +0200

Delete an error message at the end while increasing the importance of
related information.

Link: https://lkml.kernel.org/g/<20160809153615.GU5243@dell>
Suggested-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---

v5: Rebased on the source files from Linux next-20160809.

Requested changes were applied.

drivers/mfd/dm355evm_msp.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/mfd/dm355evm_msp.c b/drivers/mfd/dm355evm_msp.c
index 86eca61..463f9e2e 100644
--- a/drivers/mfd/dm355evm_msp.c
+++ b/drivers/mfd/dm355evm_msp.c
@@ -208,7 +208,7 @@ static struct device *add_child(struct i2c_client *client, const char *name,
if (pdata) {
status = platform_device_add_data(pdev, pdata, pdata_len);
if (status < 0) {
- dev_dbg(&pdev->dev, "can't add platform_data\n");
+ dev_err(&pdev->dev, "can't add platform_data\n");
goto put_device;
}
}
@@ -221,7 +221,7 @@ static struct device *add_child(struct i2c_client *client, const char *name,

status = platform_device_add_resources(pdev, &r, 1);
if (status < 0) {
- dev_dbg(&pdev->dev, "can't add irq\n");
+ dev_err(&pdev->dev, "can't add irq\n");
goto put_device;
}
}
@@ -234,7 +234,6 @@ static struct device *add_child(struct i2c_client *client, const char *name,

put_device:
platform_device_put(pdev);
- dev_err(&client->dev, "failed to add device %s\n", name);
return ERR_PTR(status);
}

--
2.9.2
\
 
 \ /
  Last update: 2016-08-11 15:01    [W:0.059 / U:0.460 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site