[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190709231448.30799-1-iamkeyur96@gmail.com>
Date: Tue, 9 Jul 2019 19:14:48 -0400
From: Keyur Patel <iamkeyur96@...il.com>
To: unlisted-recipients:; (no To-header on input)
Cc: iamkeyur96@...il.com, Johan Hovold <johan@...nel.org>,
linux-kernel@...r.kernel.org
Subject: [PATCH] gnss: core: added logging statement when kfifo_alloc fails
Added missing logging statement when kfifo_alloc fails, to improve
debugging.
Signed-off-by: Keyur Patel <iamkeyur96@...il.com>
---
drivers/gnss/core.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gnss/core.c b/drivers/gnss/core.c
index e6f94501cb28..4377adfa25b4 100644
--- a/drivers/gnss/core.c
+++ b/drivers/gnss/core.c
@@ -256,6 +256,7 @@ struct gnss_device *gnss_allocate_device(struct device *parent)
ret = kfifo_alloc(&gdev->read_fifo, GNSS_READ_FIFO_SIZE, GFP_KERNEL);
if (ret)
+ pr_err("kfifo_alloc failed\n");
goto err_put_device;
gdev->write_buf = kzalloc(GNSS_WRITE_BUF_SIZE, GFP_KERNEL);
--
2.22.0
Powered by blists - more mailing lists