[PATCH 3/7] staging: kpc2000: remove unnecessary oom message in core.c

From: Simon SandstrÃm
Date: Mon Jun 03 2019 - 18:33:37 EST


Fixes checkpatch.pl warning "Possible unnecessary 'out of memory'
message".

Signed-off-by: Simon SandstrÃm <simon@xxxxxxxxxx>
---
drivers/staging/kpc2000/kpc2000/core.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/staging/kpc2000/kpc2000/core.c b/drivers/staging/kpc2000/kpc2000/core.c
index dc6940e6c320..a70665a202c3 100644
--- a/drivers/staging/kpc2000/kpc2000/core.c
+++ b/drivers/staging/kpc2000/kpc2000/core.c
@@ -319,11 +319,8 @@ static int kp2000_pcie_probe(struct pci_dev *pdev,
* Step 1: Allocate a struct for the pcard
*/
pcard = kzalloc(sizeof(struct kp2000_device), GFP_KERNEL);
- if (!pcard) {
- dev_err(&pdev->dev,
- "probe: failed to allocate private card data\n");
+ if (!pcard)
return -ENOMEM;
- }
dev_dbg(&pdev->dev, "probe: allocated struct kp2000_device @ %p\n",
pcard);

--
2.20.1