diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-01-09 12:32:41 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:32:41 -0500 |
commit | d92c20e0a5b560bbe46d7e68bb47df2366cddf8f (patch) | |
tree | 6fe906f5fb4c7bb3d3581a298ffb2ad864f43545 /drivers/media/video/cx25840/cx25840-vbi.c | |
parent | fac9e89999a12f378112fe93764b30196bc03f46 (diff) |
V4L/DVB (3279): Added VIDIOC_QUERYCTRL to cx25840.
- Added VIDIOC_QUERYCTRL
- Removed unnecessary inlines.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/cx25840/cx25840-vbi.c')
-rw-r--r-- | drivers/media/video/cx25840/cx25840-vbi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx25840/cx25840-vbi.c b/drivers/media/video/cx25840/cx25840-vbi.c index 13ba4e15ddea..04d879da7d63 100644 --- a/drivers/media/video/cx25840/cx25840-vbi.c +++ b/drivers/media/video/cx25840/cx25840-vbi.c | |||
@@ -22,7 +22,7 @@ | |||
22 | 22 | ||
23 | #include "cx25840.h" | 23 | #include "cx25840.h" |
24 | 24 | ||
25 | static inline int odd_parity(u8 c) | 25 | static int odd_parity(u8 c) |
26 | { | 26 | { |
27 | c ^= (c >> 4); | 27 | c ^= (c >> 4); |
28 | c ^= (c >> 2); | 28 | c ^= (c >> 2); |
@@ -31,7 +31,7 @@ static inline int odd_parity(u8 c) | |||
31 | return c & 1; | 31 | return c & 1; |
32 | } | 32 | } |
33 | 33 | ||
34 | static inline int decode_vps(u8 * dst, u8 * p) | 34 | static int decode_vps(u8 * dst, u8 * p) |
35 | { | 35 | { |
36 | static const u8 biphase_tbl[] = { | 36 | static const u8 biphase_tbl[] = { |
37 | 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4, | 37 | 0xf0, 0x78, 0x70, 0xf0, 0xb4, 0x3c, 0x34, 0xb4, |