[PATCH 09/10] driver:video: return -ENOMEM on allocation failure.

From: Allen Pais
Date: Wed Sep 13 2017 - 03:34:14 EST


Signed-off-by: Allen Pais <allen.lkml@xxxxxxxxx>
---
drivers/video/fbdev/matrox/matroxfb_base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/matrox/matroxfb_base.c b/drivers/video/fbdev/matrox/matroxfb_base.c
index f6a0b9a..5cd238d 100644
--- a/drivers/video/fbdev/matrox/matroxfb_base.c
+++ b/drivers/video/fbdev/matrox/matroxfb_base.c
@@ -2058,7 +2058,7 @@ static int matroxfb_probe(struct pci_dev* pdev, const struct pci_device_id* dumm

minfo = kzalloc(sizeof(*minfo), GFP_KERNEL);
if (!minfo)
- return -1;
+ return -ENOMEM;

minfo->pcidev = pdev;
minfo->dead = 0;
--
2.7.4