[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1382555480-26605-1-git-send-email-cngo.github@gmail.com>
Date: Wed, 23 Oct 2013 15:11:20 -0400
From: Chuong Ngo <cngo.github@...il.com>
To: gregkh@...uxfoundation.org, klmckinney1@...il.com,
dan.carpenter@...cle.com
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Chuong Ngo <cngo.github@...il.com>
Subject: [PATCH] drivers: staging: bcm: Removed a developer debug statement.
Removed a developer debug statement per the TODO list. Additionally, removed braces for the if-statement to match coding style.
Signed-off-by: Chuong Ngo <cngo.github@...il.com>
---
drivers/staging/bcm/Bcmchar.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index f91bc1f..41554c8 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmchar.c
@@ -49,11 +49,8 @@ static int bcm_char_release(struct inode *inode, struct file *filp)
pTarang = (struct bcm_tarang_data *)filp->private_data;
- if (pTarang == NULL) {
- BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0,
- "ptarang is null\n");
+ if (pTarang == NULL)
return 0;
- }
Adapter = pTarang->Adapter;
--
1.8.4.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