2019-02-02 11:37:36

by Colin King

[permalink] [raw]
Subject: [PATCH] bna: fix indentation issue on call to bfa_ioc_pf_failed

From: Colin Ian King <[email protected]>

The call to bfa_ioc_pf_failed is indented too far, fix this by
removing a tab.

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/net/ethernet/brocade/bna/bfa_ioc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/brocade/bna/bfa_ioc.c b/drivers/net/ethernet/brocade/bna/bfa_ioc.c
index cbc9175d74c5..84741d288ffa 100644
--- a/drivers/net/ethernet/brocade/bna/bfa_ioc.c
+++ b/drivers/net/ethernet/brocade/bna/bfa_ioc.c
@@ -743,7 +743,7 @@ bfa_iocpf_sm_hwinit(struct bfa_iocpf *iocpf, enum iocpf_event event)

case IOCPF_E_TIMEOUT:
bfa_nw_ioc_hw_sem_release(ioc);
- bfa_ioc_pf_failed(ioc);
+ bfa_ioc_pf_failed(ioc);
bfa_fsm_set_state(iocpf, bfa_iocpf_sm_initfail_sync);
break;

--
2.20.1



2019-02-03 04:15:36

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] bna: fix indentation issue on call to bfa_ioc_pf_failed

From: Colin King <[email protected]>
Date: Sat, 2 Feb 2019 11:37:07 +0000

> From: Colin Ian King <[email protected]>
>
> The call to bfa_ioc_pf_failed is indented too far, fix this by
> removing a tab.
>
> Signed-off-by: Colin Ian King <[email protected]>

Applied.