diff options
Diffstat (limited to 'drivers/scsi/bfa/bfa_csdebug.c')
-rw-r--r-- | drivers/scsi/bfa/bfa_csdebug.c | 4 |
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 | ||