mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 16:55:16 -04:00
[media] nuvoton-cir: get rid of warning: no previous prototype
drivers/media/rc/nuvoton-cir.c:1223:5: warning: no previous prototype for 'nvt_init' [-Wmissing-prototypes] drivers/media/rc/nuvoton-cir.c:1228:6: warning: no previous prototype for 'nvt_exit' [-Wmissing-prototypes] Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
@@ -1220,12 +1220,12 @@ static struct pnp_driver nvt_driver = {
|
||||
.shutdown = nvt_shutdown,
|
||||
};
|
||||
|
||||
int nvt_init(void)
|
||||
static int nvt_init(void)
|
||||
{
|
||||
return pnp_register_driver(&nvt_driver);
|
||||
}
|
||||
|
||||
void nvt_exit(void)
|
||||
static void nvt_exit(void)
|
||||
{
|
||||
pnp_unregister_driver(&nvt_driver);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user