[media] ite-cir.c: get rid of warning: no previous prototype
drivers/media/rc/ite-cir.c:1711:5: warning: no previous prototype for 'ite_init' [-Wmissing-prototypes] drivers/media/rc/ite-cir.c:1716:6: warning: no previous prototype for 'ite_exit' [-Wmissing-prototypes] Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e03cd645df
commit
3d4bf09c1d
@ -1708,12 +1708,12 @@ static struct pnp_driver ite_driver = {
|
||||
.shutdown = ite_shutdown,
|
||||
};
|
||||
|
||||
int ite_init(void)
|
||||
static int ite_init(void)
|
||||
{
|
||||
return pnp_register_driver(&ite_driver);
|
||||
}
|
||||
|
||||
void ite_exit(void)
|
||||
static void ite_exit(void)
|
||||
{
|
||||
pnp_unregister_driver(&ite_driver);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user