Skip to content

Commit

Permalink
[media] cx24120: declare cx24120_init() as static
Browse files Browse the repository at this point in the history
drivers/media/dvb-frontends/cx24120.c:1182:5: warning: no previous prototype for 'cx24120_init' [-Wmissing-prototypes]
 int cx24120_init(struct dvb_frontend *fe)
     ^

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Patrick Boettcher <patrick.boettcher@posteo.de>
  • Loading branch information
Mauro Carvalho Chehab committed May 20, 2015
1 parent 65b0166 commit 5b8bc80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb-frontends/cx24120.c
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ static int cx24120_set_vco(struct cx24120_state *state)
return cx24120_message_send(state, &cmd);
}

int cx24120_init(struct dvb_frontend *fe)
static int cx24120_init(struct dvb_frontend *fe)
{
const struct firmware *fw;
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Expand Down

0 comments on commit 5b8bc80

Please sign in to comment.