diff options
author | Randy Dunlap <[email protected]> | 2010-04-22 11:02:14 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-04-22 11:11:02 -0700 |
commit | 1482338f6242dbaea46039c5f1b4604a472b364b (patch) | |
tree | e0dbc6e5ca881f7e41ff558d83b0e5dec606d7f4 | |
parent | c81eddb0e3728661d1585fbc564449c94165cc36 (diff) |
scsi: fix operator precedence warning
Fix operator precedence warning (from sparse), which results in the
data value always being 0:
drivers/scsi/qla4xxx/ql4_mbx.c:470:66: warning: right shift by bigger than source value
Signed-off-by: Randy Dunlap <[email protected]>
Acked-by: Ravi Anand <[email protected]>
Cc: David C Somayajulu <[email protected]>
Cc: Karen Higgins <[email protected]>
Cc: Vikas Chaudhary <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_mbx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_mbx.c b/drivers/scsi/qla4xxx/ql4_mbx.c index 09d6d4b76f39..caeb7d10ae04 100644 --- a/drivers/scsi/qla4xxx/ql4_mbx.c +++ b/drivers/scsi/qla4xxx/ql4_mbx.c @@ -467,7 +467,7 @@ int qla4xxx_get_fwddb_entry(struct scsi_qla_host *ha, if (conn_err_detail) *conn_err_detail = mbox_sts[5]; if (tcp_source_port_num) - *tcp_source_port_num = (uint16_t) mbox_sts[6] >> 16; + *tcp_source_port_num = (uint16_t) (mbox_sts[6] >> 16); if (connection_id) *connection_id = (uint16_t) mbox_sts[6] & 0x00FF; status = QLA_SUCCESS; |