Em Wed, 5 Nov 2014 09:17:48 +0100 Hans Verkuil <hverkuil@xxxxxxxxx> escreveu: > From: Hans Verkuil <hans.verkuil@xxxxxxxxx> > > sp2.c:272:5: warning: symbol 'sp2_init' was not declared. Should it be static? > sp2.c:354:5: warning: symbol 'sp2_exit' was not declared. Should it be static? This one was fixed already (at fixes branch). > > Signed-off-by: Hans Verkuil <hans.verkuil@xxxxxxxxx> > --- > drivers/media/dvb-frontends/sp2.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/media/dvb-frontends/sp2.c b/drivers/media/dvb-frontends/sp2.c > index 320cbe9..cc1ef96 100644 > --- a/drivers/media/dvb-frontends/sp2.c > +++ b/drivers/media/dvb-frontends/sp2.c > @@ -269,7 +269,7 @@ int sp2_ci_poll_slot_status(struct dvb_ca_en50221 *en50221, > return s->status; > } > > -int sp2_init(struct sp2 *s) > +static int sp2_init(struct sp2 *s) > { > int ret = 0; > u8 buf; > @@ -351,7 +351,7 @@ err: > return ret; > } > > -int sp2_exit(struct i2c_client *client) > +static int sp2_exit(struct i2c_client *client) > { > struct sp2 *s; > -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html