diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-11-03 18:38:44 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 13:01:28 -0500 |
commit | cd7560cb69489c6b798b61897449989b4e972327 (patch) | |
tree | 1c3fe67658ab10b82d6f56990f151ccd348afdca /drivers/scsi | |
parent | b94f8951bf256674eca3f2a490df17521442afef (diff) |
[SCSI] qlogicpti: add missing parentheses
`+' has a higher precedence than `?' so the condition always
evaluates to true and this is preprocessed to `7*((ql) - 1)'
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qlogicpti.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qlogicpti.h b/drivers/scsi/qlogicpti.h index 9c053bbaa877..e3c74d1ee2db 100644 --- a/drivers/scsi/qlogicpti.h +++ b/drivers/scsi/qlogicpti.h | |||
@@ -43,7 +43,7 @@ | |||
43 | * determined for each queue request anew. | 43 | * determined for each queue request anew. |
44 | */ | 44 | */ |
45 | #define QLOGICPTI_REQ_QUEUE_LEN 255 /* must be power of two - 1 */ | 45 | #define QLOGICPTI_REQ_QUEUE_LEN 255 /* must be power of two - 1 */ |
46 | #define QLOGICPTI_MAX_SG(ql) (4 + ((ql) > 0) ? 7*((ql) - 1) : 0) | 46 | #define QLOGICPTI_MAX_SG(ql) (4 + (((ql) > 0) ? 7*((ql) - 1) : 0)) |
47 | 47 | ||
48 | /* mailbox command complete status codes */ | 48 | /* mailbox command complete status codes */ |
49 | #define MBOX_COMMAND_COMPLETE 0x4000 | 49 | #define MBOX_COMMAND_COMPLETE 0x4000 |