mirror of https://gitee.com/openkylin/linux.git
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@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d5a499671b
commit
0cd2da41a3
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue