diff options
author | Joe Perches <joe@perches.com> | 2015-05-05 10:05:58 -0700 |
---|---|---|
committer | Michael Grzeschik <m.grzeschik@pengutronix.de> | 2015-09-23 08:44:24 +0200 |
commit | 5628d98fc5e99e29f2a480d4a7b1faba94a0d422 (patch) | |
tree | 768f771fc36537816f9b056db825a3f7acbf262b /drivers/net/arcnet/com20020-pci.c | |
parent | 811eafc02e16996674848d7d057909624fb0cc31 (diff) | |
download | blackbird-op-linux-5628d98fc5e99e29f2a480d4a7b1faba94a0d422.tar.gz blackbird-op-linux-5628d98fc5e99e29f2a480d4a7b1faba94a0d422.zip |
arcnet: Remove unnecessary OOM messages
Alloc failures have generic stack dumps so these are redundant.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
Diffstat (limited to 'drivers/net/arcnet/com20020-pci.c')
-rw-r--r-- | drivers/net/arcnet/com20020-pci.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/arcnet/com20020-pci.c b/drivers/net/arcnet/com20020-pci.c index 7247addf46de..fc6809b43f8f 100644 --- a/drivers/net/arcnet/com20020-pci.c +++ b/drivers/net/arcnet/com20020-pci.c @@ -142,10 +142,8 @@ static int com20020pci_probe(struct pci_dev *pdev, const struct pci_device_id *i card = devm_kzalloc(&pdev->dev, sizeof(struct com20020_dev), GFP_KERNEL); - if (!card) { - pr_err("%s out of memory!\n", __func__); + if (!card) return -ENOMEM; - } card->index = i; card->pci_priv = priv; |