Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[SCSI] gdth: Fix && typos

Fix uses of "&&" where "&" was obviously intended instead.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>

authored by

Jean Delvare and committed by
James Bottomley
107e716b 82a0d7b5

+2 -2
+2 -2
drivers/scsi/gdth.c
··· 3531 3531 IStatus &= ~0x80; 3532 3532 #ifdef INT_COAL 3533 3533 if (coalesced) 3534 - ha->status = pcs->ext_status && 0xffff; 3534 + ha->status = pcs->ext_status & 0xffff; 3535 3535 else 3536 3536 #endif 3537 3537 ha->status = gdth_readw(&dp6m_ptr->i960r.status); ··· 3543 3543 if (coalesced) { 3544 3544 ha->info = pcs->info0; 3545 3545 ha->info2 = pcs->info1; 3546 - ha->service = (pcs->ext_status >> 16) && 0xffff; 3546 + ha->service = (pcs->ext_status >> 16) & 0xffff; 3547 3547 } else 3548 3548 #endif 3549 3549 {