From: Markus Elfring <[email protected]>
Date: Sun, 7 Jan 2018 22:17:53 +0100

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <[email protected]>
---
 drivers/misc/fsa9480.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/misc/fsa9480.c b/drivers/misc/fsa9480.c
index 71d2793b372c..4d7f763195bc 100644
--- a/drivers/misc/fsa9480.c
+++ b/drivers/misc/fsa9480.c
@@ -418,10 +418,8 @@ static int fsa9480_probe(struct i2c_client *client,
                return -EIO;
 
        usbsw = kzalloc(sizeof(struct fsa9480_usbsw), GFP_KERNEL);
-       if (!usbsw) {
-               dev_err(&client->dev, "failed to allocate driver data\n");
+       if (!usbsw)
                return -ENOMEM;
-       }
 
        usbsw->client = client;
        usbsw->pdata = client->dev.platform_data;
-- 
2.15.1

Reply via email to