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

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
...@@ -684,12 +684,12 @@ static struct pnp_driver fintek_driver = { ...@@ -684,12 +684,12 @@ static struct pnp_driver fintek_driver = {
.shutdown = fintek_shutdown, .shutdown = fintek_shutdown,
}; };
int fintek_init(void) static int fintek_init(void)
{ {
return pnp_register_driver(&fintek_driver); return pnp_register_driver(&fintek_driver);
} }
void fintek_exit(void) static void fintek_exit(void)
{ {
pnp_unregister_driver(&fintek_driver); pnp_unregister_driver(&fintek_driver);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment