aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/bfa/bfa_csdebug.c
diff options
context:
space:
mode:
authorJing Huang <huangj@brocade.com>2009-09-25 15:29:54 -0400
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:00:09 -0500
commitf8ceafde6f5bf6b4b7087c7f5e9da1b2a5284a2e (patch)
tree8c726ba2d6511a2a2be1adbd41af1cf09ecffb1d /drivers/scsi/bfa/bfa_csdebug.c
parent8798a694da59486e4a3ff0abeec183202fb34c20 (diff)
[SCSI] bfa: fixed checkpatch errors for bfad files
This patch fixes checkpatch errors/warnings in bfad files. Signed-off-by: Jing Huang <huangj@brocade.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/bfa/bfa_csdebug.c')
-rw-r--r--drivers/scsi/bfa/bfa_csdebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/bfa/bfa_csdebug.c b/drivers/scsi/bfa/bfa_csdebug.c
index 1b71d349451a..caeb1143a4e6 100644
--- a/drivers/scsi/bfa/bfa_csdebug.c
+++ b/drivers/scsi/bfa/bfa_csdebug.c
@@ -47,12 +47,12 @@ bfa_q_is_on_q_func(struct list_head *q, struct list_head *qe)
47 tqe = bfa_q_next(q); 47 tqe = bfa_q_next(q);
48 while (tqe != q) { 48 while (tqe != q) {
49 if (tqe == qe) 49 if (tqe == qe)
50 return (1); 50 return 1;
51 tqe = bfa_q_next(tqe); 51 tqe = bfa_q_next(tqe);
52 if (tqe == NULL) 52 if (tqe == NULL)
53 break; 53 break;
54 } 54 }
55 return (0); 55 return 0;
56} 56}
57 57
58 58