Commit 936c05e7 authored by Márton Németh's avatar Márton Németh Committed by Mauro Carvalho Chehab

V4L/DVB: stv0900: make more local functions static

Some functions are only used locally so mark them static.

This will remove the following sparse warnings (see "make C=1"):
 * symbol 'extract_mask_pos' was not declared. Should it be static?
 * symbol 'stv0900_initialize' was not declared. Should it be static?
 * symbol 'stv0900_get_mclk_freq' was not declared. Should it be static?
 * symbol 'stv0900_set_mclk' was not declared. Should it be static?
 * symbol 'stv0900_get_err_count' was not declared. Should it be static?
Signed-off-by: default avatarMárton Németh <nm127@freemail.hu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 521e86eb
...@@ -177,7 +177,7 @@ u8 stv0900_read_reg(struct stv0900_internal *intp, u16 reg) ...@@ -177,7 +177,7 @@ u8 stv0900_read_reg(struct stv0900_internal *intp, u16 reg)
return buf; return buf;
} }
void extract_mask_pos(u32 label, u8 *mask, u8 *pos) static void extract_mask_pos(u32 label, u8 *mask, u8 *pos)
{ {
u8 position = 0, i = 0; u8 position = 0, i = 0;
...@@ -218,7 +218,7 @@ u8 stv0900_get_bits(struct stv0900_internal *intp, u32 label) ...@@ -218,7 +218,7 @@ u8 stv0900_get_bits(struct stv0900_internal *intp, u32 label)
return val; return val;
} }
enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *intp) static enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *intp)
{ {
s32 i; s32 i;
...@@ -282,7 +282,7 @@ enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *intp) ...@@ -282,7 +282,7 @@ enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *intp)
return STV0900_NO_ERROR; return STV0900_NO_ERROR;
} }
u32 stv0900_get_mclk_freq(struct stv0900_internal *intp, u32 ext_clk) static u32 stv0900_get_mclk_freq(struct stv0900_internal *intp, u32 ext_clk)
{ {
u32 mclk = 90000000, div = 0, ad_div = 0; u32 mclk = 90000000, div = 0, ad_div = 0;
...@@ -296,7 +296,7 @@ u32 stv0900_get_mclk_freq(struct stv0900_internal *intp, u32 ext_clk) ...@@ -296,7 +296,7 @@ u32 stv0900_get_mclk_freq(struct stv0900_internal *intp, u32 ext_clk)
return mclk; return mclk;
} }
enum fe_stv0900_error stv0900_set_mclk(struct stv0900_internal *intp, u32 mclk) static enum fe_stv0900_error stv0900_set_mclk(struct stv0900_internal *intp, u32 mclk)
{ {
u32 m_div, clk_sel; u32 m_div, clk_sel;
...@@ -334,7 +334,7 @@ enum fe_stv0900_error stv0900_set_mclk(struct stv0900_internal *intp, u32 mclk) ...@@ -334,7 +334,7 @@ enum fe_stv0900_error stv0900_set_mclk(struct stv0900_internal *intp, u32 mclk)
return STV0900_NO_ERROR; return STV0900_NO_ERROR;
} }
u32 stv0900_get_err_count(struct stv0900_internal *intp, int cntr, static u32 stv0900_get_err_count(struct stv0900_internal *intp, int cntr,
enum fe_stv0900_demod_num demod) enum fe_stv0900_demod_num demod)
{ {
u32 lsb, msb, hsb, err_val; u32 lsb, msb, hsb, err_val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment