[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1445582161-6840-1-git-send-email-Nilesh.Kokane05@gmail.com>
Date: Fri, 23 Oct 2015 12:06:01 +0530
From: Nilesh Kokane <nilesh.kokane05@...il.com>
To: mchehab@....samsung.com
Cc: gregkh@...uxfoundation.org, linux-media@...r.kernel.org,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
suneel.raikar@...il.com, Nilesh Kokane <Nilesh.Kokane05@...il.com>
Subject: [PATCH] Staging: media: lirc Braces not needed for single statement
Fixed the braces issue for single statement.
Signed-off-by: Nilesh Kokane <Nilesh.Kokane05@...il.com>
---
drivers/staging/media/lirc/lirc_imon.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/media/lirc/lirc_imon.c b/drivers/staging/media/lirc/lirc_imon.c
index 62ec9f7..a6cae49 100644
--- a/drivers/staging/media/lirc/lirc_imon.c
+++ b/drivers/staging/media/lirc/lirc_imon.c
@@ -785,13 +785,11 @@ static int imon_probe(struct usb_interface *interface,
}
driver = kzalloc(sizeof(struct lirc_driver), GFP_KERNEL);
- if (!driver) {
+ if (!driver)
goto free_context;
- }
rbuf = kmalloc(sizeof(struct lirc_buffer), GFP_KERNEL);
- if (!rbuf) {
+ if (!rbuf)
goto free_driver;
- }
if (lirc_buffer_init(rbuf, BUF_CHUNK_SIZE, BUF_SIZE)) {
dev_err(dev, "%s: lirc_buffer_init failed\n", __func__);
goto free_rbuf;
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists