The patch titled
     paride: fix 'and' typo in drivers/block/paride/pt.c
has been removed from the -mm tree.  Its filename was
     paride-fix-and-typo-in-drivers-block-paride-ptc.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: paride: fix 'and' typo in drivers/block/paride/pt.c
From: Roel Kluin <[EMAIL PROTECTED]>

Fix 'and' typo (PT_WRITE_OK is defined 2)

Signed-off-by: Roel Kluin <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 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 [EMAIL PROTECTED] are

origin.patch
unlock-when-ssp-tries-to-close-an-invalid-port.patch
git-dvb.patch
dvb-dont-return-with-locks-held.patch
lmc_ioctl-dont-return-with-locks-held-fix.patch
git-ocfs2.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 [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to