The patch titled
bw-qcam-use-data_reverse-instead-of-manually-poking-the-control-register
fix
has been removed from the -mm tree. Its filename was
bw-qcam-use-data_reverse-instead-of-manually-poking-the-control-register-fix.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject:
bw-qcam-use-data_reverse-instead-of-manually-poking-the-control-register fix
From: "Brett Warden" <[EMAIL PROTECTED]>
coding-style repairs
Cc: Brett T. Warden <[EMAIL PROTECTED]>
Cc: "Ray Lee" <[EMAIL PROTECTED]>
Cc: Alan Cox <[EMAIL PROTECTED]>
Cc: "Randy.Dunlap" <[EMAIL PROTECTED]>
Cc: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/media/video/bw-qcam.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff -puN
drivers/media/video/bw-qcam.c~bw-qcam-use-data_reverse-instead-of-manually-poking-the-control-register-fix
drivers/media/video/bw-qcam.c
---
a/drivers/media/video/bw-qcam.c~bw-qcam-use-data_reverse-instead-of-manually-poking-the-control-register-fix
+++ a/drivers/media/video/bw-qcam.c
@@ -104,7 +104,7 @@ static inline void write_lpdata(struct q
static inline void write_lpcontrol(struct qcam_device *q, int d)
{
- if(0x20 & d) {
+ if (d & 0x20) {
/* Set bidirectional mode to reverse (data in) */
parport_data_reverse(q->pport);
} else {
@@ -355,11 +355,11 @@ static int qc_detect(struct qcam_device
/* Be (even more) liberal in what you accept... */
/* if (count > 30 && count < 200) */
- if (count > 20 && count < 400)
- {
+ if (count > 20 && count < 400) {
return 1; /* found */
} else {
- printk(KERN_ERR "No Quickcam found on port %s\n",
q->pport->name);
+ printk(KERN_ERR "No Quickcam found on port %s\n",
+ q->pport->name);
return 0; /* not found */
}
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-dvb.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