Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330817
b: refs/heads/master
c: 70aa345
h: refs/heads/master
i:
  330815: 7f194e7
v: v3
  • Loading branch information
Andy Shevchenko authored and Mauro Carvalho Chehab committed Aug 13, 2012
1 parent 7c9e283 commit 946b538
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 20 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: 9697b54f3d3cf65de461baff5afd42d755608087
refs/heads/master: 70aa34569a7d99d5ea505421af07f335dcaabb73
7 changes: 2 additions & 5 deletions trunk/drivers/media/video/gspca/sq905c.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,8 @@ static int sd_config(struct gspca_dev *gspca_dev,
}
/* Note we leave out the usb id and the manufacturing date */
PDEBUG(D_PROBE,
"SQ9050 ID string: %02x - %02x %02x %02x %02x %02x %02x",
gspca_dev->usb_buf[3],
gspca_dev->usb_buf[14], gspca_dev->usb_buf[15],
gspca_dev->usb_buf[16], gspca_dev->usb_buf[17],
gspca_dev->usb_buf[18], gspca_dev->usb_buf[19]);
"SQ9050 ID string: %02x - %*ph",
gspca_dev->usb_buf[3], 6, gspca_dev->usb_buf + 14);

cam->cam_mode = sq905c_mode;
cam->nmodes = 2;
Expand Down
10 changes: 1 addition & 9 deletions trunk/drivers/media/video/gspca/sq930x.c
Original file line number Diff line number Diff line change
Expand Up @@ -863,15 +863,7 @@ static int sd_init(struct gspca_dev *gspca_dev)
* 6: c8 / c9 / ca / cf = mode webcam?, sensor? webcam?
* 7: 00
*/
PDEBUG(D_PROBE, "info: %02x %02x %02x %02x %02x %02x %02x %02x",
gspca_dev->usb_buf[0],
gspca_dev->usb_buf[1],
gspca_dev->usb_buf[2],
gspca_dev->usb_buf[3],
gspca_dev->usb_buf[4],
gspca_dev->usb_buf[5],
gspca_dev->usb_buf[6],
gspca_dev->usb_buf[7]);
PDEBUG(D_PROBE, "info: %*ph", 8, gspca_dev->usb_buf);

bridge_init(sd);

Expand Down
7 changes: 2 additions & 5 deletions trunk/drivers/media/video/gspca/vc032x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2934,11 +2934,8 @@ static void reg_r(struct gspca_dev *gspca_dev,
PDEBUG(D_USBI, "GET %02x 0001 %04x %02x", req, index,
gspca_dev->usb_buf[0]);
else
PDEBUG(D_USBI, "GET %02x 0001 %04x %02x %02x %02x",
req, index,
gspca_dev->usb_buf[0],
gspca_dev->usb_buf[1],
gspca_dev->usb_buf[2]);
PDEBUG(D_USBI, "GET %02x 0001 %04x %*ph",
req, index, 3, gspca_dev->usb_buf);
#endif
}

Expand Down

0 comments on commit 946b538

Please sign in to comment.