diff options
Diffstat (limited to 'drivers/media/usb/uvc/uvc_isight.c')
-rw-r--r-- | drivers/media/usb/uvc/uvc_isight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/usb/uvc/uvc_isight.c b/drivers/media/usb/uvc/uvc_isight.c index 5059fbf41020..81e6f2187bfb 100644 --- a/drivers/media/usb/uvc/uvc_isight.c +++ b/drivers/media/usb/uvc/uvc_isight.c | |||
@@ -37,16 +37,16 @@ | |||
37 | */ | 37 | */ |
38 | 38 | ||
39 | static int isight_decode(struct uvc_video_queue *queue, struct uvc_buffer *buf, | 39 | static int isight_decode(struct uvc_video_queue *queue, struct uvc_buffer *buf, |
40 | const __u8 *data, unsigned int len) | 40 | const u8 *data, unsigned int len) |
41 | { | 41 | { |
42 | static const __u8 hdr[] = { | 42 | static const u8 hdr[] = { |
43 | 0x11, 0x22, 0x33, 0x44, | 43 | 0x11, 0x22, 0x33, 0x44, |
44 | 0xde, 0xad, 0xbe, 0xef, | 44 | 0xde, 0xad, 0xbe, 0xef, |
45 | 0xde, 0xad, 0xfa, 0xce | 45 | 0xde, 0xad, 0xfa, 0xce |
46 | }; | 46 | }; |
47 | 47 | ||
48 | unsigned int maxlen, nbytes; | 48 | unsigned int maxlen, nbytes; |
49 | __u8 *mem; | 49 | u8 *mem; |
50 | int is_header = 0; | 50 | int is_header = 0; |
51 | 51 | ||
52 | if (buf == NULL) | 52 | if (buf == NULL) |