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

Commit a3faff2b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

fintek-cir: get rid of warning: no previous prototype


Cc: Linux Media Mailing List <linux-media@vger.kernel.org>

drivers/media/rc/fintek-cir.c:687:5: warning: no previous prototype for 'fintek_init' [-Wmissing-prototypes]
drivers/media/rc/fintek-cir.c:692:6: warning: no previous prototype for 'fintek_exit' [-Wmissing-prototypes]

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 5a3ef810
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -684,12 +684,12 @@ static struct pnp_driver fintek_driver = {
	.shutdown	= fintek_shutdown,
};

int fintek_init(void)
static int fintek_init(void)
{
	return pnp_register_driver(&fintek_driver);
}

void fintek_exit(void)
static void fintek_exit(void)
{
	pnp_unregister_driver(&fintek_driver);
}