The patch titled
tcm825x:fix logical typo error
has been added to the -mm tree. Its filename is
tcm825xfix-logical-typo-error.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** 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
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: tcm825x:fix logical typo error
From: Cyrill Gorcunov <[EMAIL PROTECTED]>
Fix potential NULL pointer dereference due to logical typo error.
The issue is pointed out by Guennadi Liakhovetski.
Signed-off-by: Cyrill Gorcunov <[EMAIL PROTECTED]>
Cc: Guennadi Liakhovetski <[EMAIL PROTECTED]>
Cc: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/media/video/tcm825x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/media/video/tcm825x.c~tcm825xfix-logical-typo-error
drivers/media/video/tcm825x.c
--- a/drivers/media/video/tcm825x.c~tcm825xfix-logical-typo-error
+++ a/drivers/media/video/tcm825x.c
@@ -851,7 +851,7 @@ static int tcm825x_probe(struct i2c_clie
sensor->platform_data = client->dev.platform_data;
if (sensor->platform_data == NULL
- && !sensor->platform_data->is_okay())
+ || !sensor->platform_data->is_okay())
return -ENODEV;
sensor->v4l2_int_device = &tcm825x_int_device;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
cris-add-missed-local_irq_restore-call.patch
git-powerpc.patch
tcm825xfix-logical-typo-error.patch
git-x86.patch
driver-ip27-rtc-convert-ioctl-to-unlocked_ioctl-v2.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