The patch titled paride: fix 'and' typo in drivers/block/paride/pt.c has been added to the -mm tree. Its filename is paride-fix-and-typo-in-drivers-block-paride-ptc.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: paride: fix 'and' typo in drivers/block/paride/pt.c From: Roel Kluin <12o3l@xxxxxxxxxx> Fix 'and' typo (PT_WRITE_OK is defined 2) Signed-off-by: Roel Kluin <12o3l@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/paride/pt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/block/paride/pt.c~paride-fix-and-typo-in-drivers-block-paride-ptc drivers/block/paride/pt.c --- a/drivers/block/paride/pt.c~paride-fix-and-typo-in-drivers-block-paride-ptc +++ a/drivers/block/paride/pt.c @@ -664,7 +664,7 @@ static int pt_open(struct inode *inode, goto out; err = -EROFS; - if ((!tape->flags & PT_WRITE_OK) && (file->f_mode & 2)) + if ((!(tape->flags & PT_WRITE_OK)) && (file->f_mode & 2)) goto out; if (!(iminor(inode) & 128)) _ Patches currently in -mm which might be from 12o3l@xxxxxxxxxx are origin.patch i4l-errors-with-assignments-in-if.patch paride-fix-and-typo-in-drivers-block-paride-ptc.patch unlock-when-ssp-tries-to-close-an-invalid-port.patch dvb-dont-return-with-locks-held.patch lmc_ioctl-dont-return-with-locks-held-fix.patch git-ocfs2.patch git-s390.patch git-watchdog.patch cris-gpio-undo-locks-before-returning.patch mips-undo-locking-on-error-path-returns.patch mips-undo-locking-on-error-path-returns-checkpatch-fixes.patch cris-build-fixes-update-eth_v10c-ethernet-driver-fix.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