diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /drivers/scsi/bfa/bfa_csdebug.c | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
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 | ||