Commit 2bf0f93e0d3044478bdd9e3dada19799d34dbfc2
1 parent
05ad412a63
Exists in
smarc-l5.0.0_1.0.0-ga
and in
5 other branches
[media] siano: make some functions static
drivers/media/common/siano/smsdvb-debugfs.c:51:6: warning: no previous prototype for 'smsdvb_print_dvb_stats' [-Wmissing-prototypes] drivers/media/common/siano/smsdvb-debugfs.c:154:6: warning: no previous prototype for 'smsdvb_print_isdb_stats' [-Wmissing-prototypes] drivers/media/common/siano/smsdvb-debugfs.c:244:6: warning: no previous prototype for 'smsdvb_print_isdb_stats_ex' [-Wmissing-prototypes] drivers/media/common/siano/smscoreapi.c:832:5: warning: no previous prototype for 'smscore_configure_board' [-Wmissing-prototypes] drivers/media/common/siano/smscoreapi.c:1301:5: warning: no previous prototype for 'smscore_init_device' [-Wmissing-prototypes] Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Showing 2 changed files with 5 additions and 5 deletions Side-by-side Diff
drivers/media/common/siano/smscoreapi.c
... | ... | @@ -829,7 +829,7 @@ |
829 | 829 | * |
830 | 830 | * @return 0 on success, <0 on error. |
831 | 831 | */ |
832 | -int smscore_configure_board(struct smscore_device_t *coredev) | |
832 | +static int smscore_configure_board(struct smscore_device_t *coredev) | |
833 | 833 | { |
834 | 834 | struct sms_board *board; |
835 | 835 | |
... | ... | @@ -1298,7 +1298,7 @@ |
1298 | 1298 | * |
1299 | 1299 | * @return 0 on success, <0 on error. |
1300 | 1300 | */ |
1301 | -int smscore_init_device(struct smscore_device_t *coredev, int mode) | |
1301 | +static int smscore_init_device(struct smscore_device_t *coredev, int mode) | |
1302 | 1302 | { |
1303 | 1303 | void *buffer; |
1304 | 1304 | struct sms_msg_data *msg; |
drivers/media/common/siano/smsdvb-debugfs.c
... | ... | @@ -48,7 +48,7 @@ |
48 | 48 | wait_queue_head_t stats_queue; |
49 | 49 | }; |
50 | 50 | |
51 | -void smsdvb_print_dvb_stats(struct smsdvb_debugfs *debug_data, | |
51 | +static void smsdvb_print_dvb_stats(struct smsdvb_debugfs *debug_data, | |
52 | 52 | struct sms_stats *p) |
53 | 53 | { |
54 | 54 | int n = 0; |
... | ... | @@ -151,7 +151,7 @@ |
151 | 151 | wake_up(&debug_data->stats_queue); |
152 | 152 | } |
153 | 153 | |
154 | -void smsdvb_print_isdb_stats(struct smsdvb_debugfs *debug_data, | |
154 | +static void smsdvb_print_isdb_stats(struct smsdvb_debugfs *debug_data, | |
155 | 155 | struct sms_isdbt_stats *p) |
156 | 156 | { |
157 | 157 | int i, n = 0; |
... | ... | @@ -241,7 +241,7 @@ |
241 | 241 | wake_up(&debug_data->stats_queue); |
242 | 242 | } |
243 | 243 | |
244 | -void smsdvb_print_isdb_stats_ex(struct smsdvb_debugfs *debug_data, | |
244 | +static void smsdvb_print_isdb_stats_ex(struct smsdvb_debugfs *debug_data, | |
245 | 245 | struct sms_isdbt_stats_ex *p) |
246 | 246 | { |
247 | 247 | int i, n = 0; |