mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
09ebd191f1
commit
bf40d51a1c
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue