The patch titled flexcop-usb.c: fix "&& 0xff" typos and debug printk has been removed from the -mm tree. Its filename was flexcop-usbc-fix-0xff-typos-and.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: flexcop-usb.c: fix "&& 0xff" typos and debug printk From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Why, oh why, one would want to do (u16 & 0xff) << 8 and print it with %02x format? Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/media/dvb/b2c2/flexcop-usb.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/media/dvb/b2c2/flexcop-usb.c~flexcop-usbc-fix-0xff-typos-and drivers/media/dvb/b2c2/flexcop-usb.c --- a/drivers/media/dvb/b2c2/flexcop-usb.c~flexcop-usbc-fix-0xff-typos-and +++ a/drivers/media/dvb/b2c2/flexcop-usb.c @@ -246,7 +246,7 @@ static int flexcop_usb_i2c_req(struct fl wIndex = (chipaddr << 8 ) | addr; deb_i2c("i2c %2d: %02x %02x %02x %02x %02x %02x\n",func,request_type,req, - ((wValue && 0xff) << 8),wValue >> 8,((wIndex && 0xff) << 8),wIndex >> 8); + wValue & 0xff, wValue >> 8, wIndex & 0xff, wIndex >> 8); len = usb_control_msg(fc_usb->udev,pipe, req, _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch git-cpufreq.patch git-dvb.patch git-gfs2-nmw.patch git-ieee1394.patch git-mtd.patch git-netdev-all.patch git-net.patch parisc-use-unsigned-long-flags-in-semaphore-code.patch megaraid-fix-warnings-when-config_proc_fs=n.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