diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-03-03 06:50:42 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 14:44:13 -0400 |
commit | 31ec13561060b748221f4e0404bcc5bf8078ccd0 (patch) | |
tree | 27f1e91e9ce54d3e13090779fb95282269612117 | |
parent | 43053c07fa2935038bfc0e5dbaf417d1d66cd95d (diff) |
V4L/DVB (5379): If possible make vars/functions static.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/ivtv/ivtv-driver.c | 2 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-fileops.c | 2 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-fileops.h | 1 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-i2c.c | 7 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-i2c.h | 2 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-streams.c | 2 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-video.c | 8 | ||||
-rw-r--r-- | drivers/media/video/ivtv/ivtv-video.h | 1 |
8 files changed, 4 insertions, 21 deletions
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index 9a8dae811ddf..162a1e8fcdc8 100644 --- a/drivers/media/video/ivtv/ivtv-driver.c +++ b/drivers/media/video/ivtv/ivtv-driver.c | |||
@@ -121,7 +121,7 @@ static int ivtv_pci_latency = 1; | |||
121 | 121 | ||
122 | int ivtv_debug = 0; | 122 | int ivtv_debug = 0; |
123 | 123 | ||
124 | int newi2c = -1; | 124 | static int newi2c = -1; |
125 | 125 | ||
126 | module_param_array(tuner, int, &tuner_c, 0644); | 126 | module_param_array(tuner, int, &tuner_c, 0644); |
127 | module_param_array(radio, bool, &radio_c, 0644); | 127 | module_param_array(radio, bool, &radio_c, 0644); |
diff --git a/drivers/media/video/ivtv/ivtv-fileops.c b/drivers/media/video/ivtv/ivtv-fileops.c index 90e0f51e635c..2f38bb14ace9 100644 --- a/drivers/media/video/ivtv/ivtv-fileops.c +++ b/drivers/media/video/ivtv/ivtv-fileops.c | |||
@@ -730,7 +730,7 @@ void ivtv_stop_capture(struct ivtv_open_id *id, int gop_end) | |||
730 | ivtv_release_stream(s); | 730 | ivtv_release_stream(s); |
731 | } | 731 | } |
732 | 732 | ||
733 | void ivtv_stop_decoding(struct ivtv_open_id *id, int flags, u64 pts) | 733 | static void ivtv_stop_decoding(struct ivtv_open_id *id, int flags, u64 pts) |
734 | { | 734 | { |
735 | struct ivtv *itv = id->itv; | 735 | struct ivtv *itv = id->itv; |
736 | struct ivtv_stream *s = &itv->streams[id->type]; | 736 | struct ivtv_stream *s = &itv->streams[id->type]; |
diff --git a/drivers/media/video/ivtv/ivtv-fileops.h b/drivers/media/video/ivtv/ivtv-fileops.h index 1afa950209b8..74a1745fabbc 100644 --- a/drivers/media/video/ivtv/ivtv-fileops.h +++ b/drivers/media/video/ivtv/ivtv-fileops.h | |||
@@ -30,7 +30,6 @@ unsigned int ivtv_v4l2_dec_poll(struct file *filp, poll_table * wait); | |||
30 | int ivtv_start_capture(struct ivtv_open_id *id); | 30 | int ivtv_start_capture(struct ivtv_open_id *id); |
31 | void ivtv_stop_capture(struct ivtv_open_id *id, int gop_end); | 31 | void ivtv_stop_capture(struct ivtv_open_id *id, int gop_end); |
32 | int ivtv_start_decoding(struct ivtv_open_id *id, int speed); | 32 | int ivtv_start_decoding(struct ivtv_open_id *id, int speed); |
33 | void ivtv_stop_decoding(struct ivtv_open_id *id, int flags, u64 pts); | ||
34 | void ivtv_mute(struct ivtv *itv); | 33 | void ivtv_mute(struct ivtv *itv); |
35 | void ivtv_unmute(struct ivtv *itv); | 34 | void ivtv_unmute(struct ivtv *itv); |
36 | 35 | ||
diff --git a/drivers/media/video/ivtv/ivtv-i2c.c b/drivers/media/video/ivtv/ivtv-i2c.c index 07c7ed0fe445..696af35e0282 100644 --- a/drivers/media/video/ivtv/ivtv-i2c.c +++ b/drivers/media/video/ivtv/ivtv-i2c.c | |||
@@ -574,7 +574,7 @@ int ivtv_call_i2c_client(struct ivtv *itv, int addr, unsigned int cmd, void *arg | |||
574 | 574 | ||
575 | /* Find the i2c device based on the driver ID and return | 575 | /* Find the i2c device based on the driver ID and return |
576 | its i2c address or -ENODEV if no matching device was found. */ | 576 | its i2c address or -ENODEV if no matching device was found. */ |
577 | int ivtv_i2c_id_addr(struct ivtv *itv, u32 id) | 577 | static int ivtv_i2c_id_addr(struct ivtv *itv, u32 id) |
578 | { | 578 | { |
579 | struct i2c_client *client; | 579 | struct i2c_client *client; |
580 | int retval = -ENODEV; | 580 | int retval = -ENODEV; |
@@ -681,11 +681,6 @@ int ivtv_saa717x(struct ivtv *itv, unsigned int cmd, void *arg) | |||
681 | return ivtv_call_i2c_client(itv, IVTV_SAA717x_I2C_ADDR, cmd, arg); | 681 | return ivtv_call_i2c_client(itv, IVTV_SAA717x_I2C_ADDR, cmd, arg); |
682 | } | 682 | } |
683 | 683 | ||
684 | int ivtv_msp34xx(struct ivtv *itv, unsigned int cmd, void *arg) | ||
685 | { | ||
686 | return ivtv_call_i2c_client(itv, IVTV_MSP3400_I2C_ADDR, cmd, arg); | ||
687 | } | ||
688 | |||
689 | int ivtv_upd64031a(struct ivtv *itv, unsigned int cmd, void *arg) | 684 | int ivtv_upd64031a(struct ivtv *itv, unsigned int cmd, void *arg) |
690 | { | 685 | { |
691 | return ivtv_call_i2c_client(itv, IVTV_UPD64031A_I2C_ADDR, cmd, arg); | 686 | return ivtv_call_i2c_client(itv, IVTV_UPD64031A_I2C_ADDR, cmd, arg); |
diff --git a/drivers/media/video/ivtv/ivtv-i2c.h b/drivers/media/video/ivtv/ivtv-i2c.h index 136dd684f4b5..5d210adb5c52 100644 --- a/drivers/media/video/ivtv/ivtv-i2c.h +++ b/drivers/media/video/ivtv/ivtv-i2c.h | |||
@@ -22,11 +22,9 @@ int ivtv_cx25840(struct ivtv *itv, unsigned int cmd, void *arg); | |||
22 | int ivtv_saa7115(struct ivtv *itv, unsigned int cmd, void *arg); | 22 | int ivtv_saa7115(struct ivtv *itv, unsigned int cmd, void *arg); |
23 | int ivtv_saa7127(struct ivtv *itv, unsigned int cmd, void *arg); | 23 | int ivtv_saa7127(struct ivtv *itv, unsigned int cmd, void *arg); |
24 | int ivtv_saa717x(struct ivtv *itv, unsigned int cmd, void *arg); | 24 | int ivtv_saa717x(struct ivtv *itv, unsigned int cmd, void *arg); |
25 | int ivtv_msp34xx(struct ivtv *itv, unsigned int cmd, void *arg); | ||
26 | int ivtv_upd64031a(struct ivtv *itv, unsigned int cmd, void *arg); | 25 | int ivtv_upd64031a(struct ivtv *itv, unsigned int cmd, void *arg); |
27 | int ivtv_upd64083(struct ivtv *itv, unsigned int cmd, void *arg); | 26 | int ivtv_upd64083(struct ivtv *itv, unsigned int cmd, void *arg); |
28 | 27 | ||
29 | int ivtv_i2c_id_addr(struct ivtv *itv, u32 id); | ||
30 | int ivtv_i2c_hw_addr(struct ivtv *itv, u32 hw); | 28 | int ivtv_i2c_hw_addr(struct ivtv *itv, u32 hw); |
31 | int ivtv_i2c_hw(struct ivtv *itv, u32 hw, unsigned int cmd, void *arg); | 29 | int ivtv_i2c_hw(struct ivtv *itv, u32 hw, unsigned int cmd, void *arg); |
32 | int ivtv_i2c_id(struct ivtv *itv, u32 id, unsigned int cmd, void *arg); | 30 | int ivtv_i2c_id(struct ivtv *itv, u32 id, unsigned int cmd, void *arg); |
diff --git a/drivers/media/video/ivtv/ivtv-streams.c b/drivers/media/video/ivtv/ivtv-streams.c index 73a1c933d8f7..01a41a844a30 100644 --- a/drivers/media/video/ivtv/ivtv-streams.c +++ b/drivers/media/video/ivtv/ivtv-streams.c | |||
@@ -66,7 +66,7 @@ static struct file_operations ivtv_v4l2_dec_fops = { | |||
66 | .poll = ivtv_v4l2_dec_poll, | 66 | .poll = ivtv_v4l2_dec_poll, |
67 | }; | 67 | }; |
68 | 68 | ||
69 | struct { | 69 | static struct { |
70 | const char *name; | 70 | const char *name; |
71 | int vfl_type; | 71 | int vfl_type; |
72 | int minor_offset; | 72 | int minor_offset; |
diff --git a/drivers/media/video/ivtv/ivtv-video.c b/drivers/media/video/ivtv/ivtv-video.c index 77e42d13cdee..5858b197d510 100644 --- a/drivers/media/video/ivtv/ivtv-video.c +++ b/drivers/media/video/ivtv/ivtv-video.c | |||
@@ -85,14 +85,6 @@ void ivtv_set_wss(struct ivtv *itv, int enabled, int mode) | |||
85 | ivtv_saa7127(itv, VIDIOC_INT_S_VBI_DATA, &data); | 85 | ivtv_saa7127(itv, VIDIOC_INT_S_VBI_DATA, &data); |
86 | } | 86 | } |
87 | 87 | ||
88 | void ivtv_encoder_enable(struct ivtv *itv, int enabled) | ||
89 | { | ||
90 | if (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT) { | ||
91 | ivtv_saa7127(itv, enabled ? VIDIOC_STREAMON : VIDIOC_STREAMOFF, | ||
92 | &enabled); | ||
93 | } | ||
94 | } | ||
95 | |||
96 | void ivtv_video_set_io(struct ivtv *itv) | 88 | void ivtv_video_set_io(struct ivtv *itv) |
97 | { | 89 | { |
98 | struct v4l2_routing route; | 90 | struct v4l2_routing route; |
diff --git a/drivers/media/video/ivtv/ivtv-video.h b/drivers/media/video/ivtv/ivtv-video.h index 5efedebe317b..c8ade5d3c413 100644 --- a/drivers/media/video/ivtv/ivtv-video.h +++ b/drivers/media/video/ivtv/ivtv-video.h | |||
@@ -21,5 +21,4 @@ void ivtv_set_wss(struct ivtv *itv, int enabled, int mode); | |||
21 | void ivtv_set_cc(struct ivtv *itv, int mode, u8 cc1, u8 cc2, u8 cc3, u8 cc4); | 21 | void ivtv_set_cc(struct ivtv *itv, int mode, u8 cc1, u8 cc2, u8 cc3, u8 cc4); |
22 | void ivtv_set_vps(struct ivtv *itv, int enabled, u8 vps1, u8 vps2, u8 vps3, | 22 | void ivtv_set_vps(struct ivtv *itv, int enabled, u8 vps1, u8 vps2, u8 vps3, |
23 | u8 vps4, u8 vps5); | 23 | u8 vps4, u8 vps5); |
24 | void ivtv_encoder_enable(struct ivtv *itv, int enabled); | ||
25 | void ivtv_video_set_io(struct ivtv *itv); | 24 | void ivtv_video_set_io(struct ivtv *itv); |