Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d4bf09c authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[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: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent e03cd645
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}