Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 192832
b: refs/heads/master
c: 436c2c5
h: refs/heads/master
v: v3
  • Loading branch information
Hans de Goede authored and Mauro Carvalho Chehab committed May 18, 2010
1 parent 7a5fe2f commit 70870d2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6b33e5e7fe03c6577ccbaeeb028ab4ec1f26f2b0
refs/heads/master: 436c2c533a2a2f98d95347f4d5b4022becb046f6
24 changes: 24 additions & 0 deletions trunk/drivers/media/video/gspca/spca561.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#define MODULE_NAME "spca561"

#include <linux/input.h>
#include "gspca.h"

MODULE_AUTHOR("Michel Xhaard <mxhaard@users.sourceforge.net>");
Expand Down Expand Up @@ -778,6 +779,23 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev,
switch (*data++) { /* sequence number */
case 0: /* start of frame */
gspca_frame_add(gspca_dev, LAST_PACKET, NULL, 0);

/* This should never happen */
if (len < 2) {
PDEBUG(D_ERR, "Short SOF packet, ignoring");
gspca_dev->last_packet_type = DISCARD_PACKET;
return;
}

#ifdef CONFIG_INPUT
if (data[0] & 0x20) {
input_report_key(gspca_dev->input_dev, KEY_CAMERA, 1);
input_sync(gspca_dev->input_dev);
input_report_key(gspca_dev->input_dev, KEY_CAMERA, 0);
input_sync(gspca_dev->input_dev);
}
#endif

if (data[1] & 0x10) {
/* compressed bayer */
gspca_frame_add(gspca_dev, FIRST_PACKET, data, len);
Expand Down Expand Up @@ -1019,6 +1037,9 @@ static const struct sd_desc sd_desc_12a = {
.start = sd_start_12a,
.stopN = sd_stopN,
.pkt_scan = sd_pkt_scan,
#ifdef CONFIG_INPUT
.other_input = 1,
#endif
};
static const struct sd_desc sd_desc_72a = {
.name = MODULE_NAME,
Expand All @@ -1030,6 +1051,9 @@ static const struct sd_desc sd_desc_72a = {
.stopN = sd_stopN,
.pkt_scan = sd_pkt_scan,
.dq_callback = do_autogain,
#ifdef CONFIG_INPUT
.other_input = 1,
#endif
};
static const struct sd_desc *sd_desc[2] = {
&sd_desc_12a,
Expand Down

0 comments on commit 70870d2

Please sign in to comment.