The patch titled gdth: fix "&& 0xff" typos has been added to the -mm tree. Its filename is gdth-fix-0xff-typos.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: gdth: fix "&& 0xff" typos From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/gdth.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/scsi/gdth.c~gdth-fix-0xff-typos drivers/scsi/gdth.c --- a/drivers/scsi/gdth.c~gdth-fix-0xff-typos +++ a/drivers/scsi/gdth.c @@ -3531,7 +3531,7 @@ static irqreturn_t gdth_interrupt(int ir IStatus &= ~0x80; #ifdef INT_COAL if (coalesced) - ha->status = pcs->ext_status && 0xffff; + ha->status = pcs->ext_status & 0xffff; else #endif ha->status = gdth_readw(&dp6m_ptr->i960r.status); @@ -3543,7 +3543,7 @@ static irqreturn_t gdth_interrupt(int ir if (coalesced) { ha->info = pcs->info0; ha->info2 = pcs->info1; - ha->service = (pcs->ext_status >> 16) && 0xffff; + ha->service = (pcs->ext_status >> 16) & 0xffff; } else #endif { _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are ipmi_si_intfc-fix-0xff-typos.patch tda826x-use-correct-max-frequency.patch git-gfs2-nmw.patch git-ieee1394.patch git-mtd.patch git-netdev-all.patch parisc-use-unsigned-long-flags-in-semaphore-code.patch megaraid-fix-warnings-when-config_proc_fs=n.patch gdth-fix-0xff-typos.patch security-keys-user-kmemdup.patch paride-rename-pi_register-and-pi_unregister.patch paride_register-shuffle-return-values.patch enforce-unsigned-long-flags-when-spinlocking.patch compile-time-check-re-world-writeable-module-params.patch fs-trivial-vsnprintf-conversion.patch hpfs-bring-hpfs_error-into-shape.patch drivers-cdrom-trivial-vsnprintf-conversion.patch drivers-isdn-trivial-vsnprintf-conversion.patch drivers-video-use-kmemdup.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html