Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234046
b: refs/heads/master
c: 752eb7a
h: refs/heads/master
v: v3
  • Loading branch information
sensoray-dev authored and Mauro Carvalho Chehab committed Feb 2, 2011
1 parent c4dfa26 commit 04538c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0552774d0670692f37a8d94374ed16fd9f676dbf
refs/heads/master: 752eb7ae5075506fb6ac96a901b0e5b3e459f001
10 changes: 6 additions & 4 deletions trunk/drivers/media/video/s2255drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#include <linux/usb.h>

#define S2255_MAJOR_VERSION 1
#define S2255_MINOR_VERSION 20
#define S2255_MINOR_VERSION 21
#define S2255_RELEASE 0
#define S2255_VERSION KERNEL_VERSION(S2255_MAJOR_VERSION, \
S2255_MINOR_VERSION, \
Expand Down Expand Up @@ -312,9 +312,9 @@ struct s2255_fh {
};

/* current cypress EEPROM firmware version */
#define S2255_CUR_USB_FWVER ((3 << 8) | 6)
#define S2255_CUR_USB_FWVER ((3 << 8) | 11)
/* current DSP FW version */
#define S2255_CUR_DSP_FWVER 8
#define S2255_CUR_DSP_FWVER 10102
/* Need DSP version 5+ for video status feature */
#define S2255_MIN_DSP_STATUS 5
#define S2255_MIN_DSP_COLORFILTER 8
Expand Down Expand Up @@ -492,9 +492,11 @@ static void planar422p_to_yuv_packed(const unsigned char *in,

static void s2255_reset_dsppower(struct s2255_dev *dev)
{
s2255_vendor_req(dev, 0x40, 0x0b0b, 0x0b0b, NULL, 0, 1);
s2255_vendor_req(dev, 0x40, 0x0b0b, 0x0b01, NULL, 0, 1);
msleep(10);
s2255_vendor_req(dev, 0x50, 0x0000, 0x0000, NULL, 0, 1);
msleep(600);
s2255_vendor_req(dev, 0x10, 0x0000, 0x0000, NULL, 0, 1);
return;
}

Expand Down

0 comments on commit 04538c3

Please sign in to comment.