aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/bw-qcam.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/drivers/media/video/bw-qcam.c b/drivers/media/video/bw-qcam.c
index 7d47cbe6ad2..0edd05ebcc3 100644
--- a/drivers/media/video/bw-qcam.c
+++ b/drivers/media/video/bw-qcam.c
@@ -104,6 +104,17 @@ static inline void write_lpdata(struct qcam_device *q, int d)
104 104
105static inline void write_lpcontrol(struct qcam_device *q, int d) 105static inline void write_lpcontrol(struct qcam_device *q, int d)
106{ 106{
107 if(0x20 & d) {
108 /* Set bidirectional mode to reverse (data in) */
109 parport_data_reverse(q->pport);
110 } else {
111 /* Set bidirectional mode to forward (data out) */
112 parport_data_forward(q->pport);
113 }
114
115 /* Now issue the regular port command, but strip out the
116 * direction flag */
117 d &= ~0x20;
107 parport_write_control(q->pport, d); 118 parport_write_control(q->pport, d);
108} 119}
109 120
@@ -344,10 +355,13 @@ static int qc_detect(struct qcam_device *q)
344 /* Be (even more) liberal in what you accept... */ 355 /* Be (even more) liberal in what you accept... */
345 356
346/* if (count > 30 && count < 200) */ 357/* if (count > 30 && count < 200) */
347 if (count > 20 && count < 300) 358 if (count > 20 && count < 400)
359 {
348 return 1; /* found */ 360 return 1; /* found */
349 else 361 } else {
362 printk(KERN_ERR "No Quickcam found on port %s\n", q->pport->name);
350 return 0; /* not found */ 363 return 0; /* not found */
364 }
351} 365}
352 366
353 367