aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/janz-cmodio.c
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2018-01-14 22:15:09 +0100
committerLee Jones <lee.jones@linaro.org>2018-05-16 09:21:48 +0100
commit292155bee199c60e31fe9c30c3135154837c86a9 (patch)
tree4f50083b7e0c9bae3ddba59cfe7a3e21465d4dc3 /drivers/mfd/janz-cmodio.c
parentmfd: htc-i2cpld: Delete error message for a failed memory allocation (diff)
downloadlinux-dev-292155bee199c60e31fe9c30c3135154837c86a9.tar.xz
linux-dev-292155bee199c60e31fe9c30c3135154837c86a9.zip
mfd: janz-cmodio: Delete error message for a failed memory allocation
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 <elfring@users.sourceforge.net> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/janz-cmodio.c')
-rw-r--r--drivers/mfd/janz-cmodio.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mfd/janz-cmodio.c b/drivers/mfd/janz-cmodio.c
index ec1f46a6be3a..317a47ad5bb7 100644
--- a/drivers/mfd/janz-cmodio.c
+++ b/drivers/mfd/janz-cmodio.c
@@ -183,10 +183,8 @@ static int cmodio_pci_probe(struct pci_dev *dev,
int ret;
priv = devm_kzalloc(&dev->dev, sizeof(*priv), GFP_KERNEL);
- if (!priv) {
- dev_err(&dev->dev, "unable to allocate private data\n");
+ if (!priv)
return -ENOMEM;
- }
pci_set_drvdata(dev, priv);
priv->pdev = dev;