summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSeverin Gsponer <svgsponer@gmail.com>2013-04-29 13:49:04 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-13 14:01:10 (GMT)
commit14704ccf2a6c687324a556106eb4105b04a1660f (patch)
treee6a57bfdd99f0cf0600a6bec585e05b2ddfccd85 /drivers
parent8a938c927c9e7e8aed04dd87348949e2c9040dff (diff)
downloadlinux-fsl-qoriq-14704ccf2a6c687324a556106eb4105b04a1660f.tar.xz
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/bcm/Bcmchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 35641e5..f67a225 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmchar.c
@@ -13,7 +13,7 @@
* 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_tarang_data *pTarang = NULL;