summaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge
diff options
context:
space:
mode:
authorRashika Kheria2013-11-10 14:30:22 +0100
committerGreg Kroah-Hartman2013-11-10 21:12:55 +0100
commitbf40d51a1c9490740e68815c28d449ab8d17af62 (patch)
treef3ede690f6a7033494d25ff758276a2a1a7b4068 /drivers/staging/tidspbridge
parentStaging: tidspbridge: Fix foo * bar should be foo *bar in dev.c (diff)
downloadkernel-qcow2-linux-bf40d51a1c9490740e68815c28d449ab8d17af62.tar.gz
kernel-qcow2-linux-bf40d51a1c9490740e68815c28d449ab8d17af62.tar.xz
kernel-qcow2-linux-bf40d51a1c9490740e68815c28d449ab8d17af62.zip
Staging: tidspbridge: Fix no space at the start of the line in dev.c
This patch fixes the following checkpatch.pl warning in pmgr/dev.c- WARNING: please, no spaces at the start of a line Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/tidspbridge')
-rw-r--r--drivers/staging/tidspbridge/pmgr/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/tidspbridge/pmgr/dev.c b/drivers/staging/tidspbridge/pmgr/dev.c
index e23e6a23daa2..616dc1f63070 100644
--- a/drivers/staging/tidspbridge/pmgr/dev.c
+++ b/drivers/staging/tidspbridge/pmgr/dev.c
@@ -916,8 +916,8 @@ static void store_interface_fxns(struct bridge_drv_interface *drv_fxns,
/* Local helper macro: */
#define STORE_FXN(cast, pfn) \
- (intf_fxns->pfn = ((drv_fxns->pfn != NULL) ? drv_fxns->pfn : \
- (cast)fxn_not_implemented))
+ (intf_fxns->pfn = ((drv_fxns->pfn != NULL) ? drv_fxns->pfn : \
+ (cast)fxn_not_implemented))
bridge_version = MAKEVERSION(drv_fxns->brd_api_major_version,
drv_fxns->brd_api_minor_version);