Staging: bcm: Fix of a litte white space error in Bcmchar.c
Fixed a wrong placed whitespace. Found with the checkpatch.pl script. checkpatch.pl error message: ERROR: "foo * bar" should be "foo *bar" +static int bcm_char_open(struct inode *inode, struct file * filp) Signed-off-by: Severin Gsponer <svgsponer@gmail.com> Acked-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8a938c927c
commit
14704ccf2a
|
@ -13,7 +13,7 @@
|
||||||
* Returns - Zero(Success)
|
* Returns - Zero(Success)
|
||||||
****************************************************************/
|
****************************************************************/
|
||||||
|
|
||||||
static int bcm_char_open(struct inode *inode, struct file * filp)
|
static int bcm_char_open(struct inode *inode, struct file *filp)
|
||||||
{
|
{
|
||||||
struct bcm_mini_adapter *Adapter = NULL;
|
struct bcm_mini_adapter *Adapter = NULL;
|
||||||
struct bcm_tarang_data *pTarang = NULL;
|
struct bcm_tarang_data *pTarang = NULL;
|
||||||
|
|
Loading…
Reference in New Issue