diff options
| author | Mauro Carvalho Chehab <[email protected]> | 2012-10-27 18:34:23 -0200 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2012-10-28 07:39:05 -0200 |
| commit | a3faff2b39ca67684fb294a84d3e2d1ad2f4dfa2 (patch) | |
| tree | befa029c4468504c26805038bd9bada11f29dab6 | |
| parent | 5a3ef810746b1219b00e3e2bd680250039da3df2 (diff) | |
fintek-cir: get rid of warning: no previous prototype
Cc: Linux Media Mailing List <[email protected]>
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: Mauro Carvalho Chehab <[email protected]>
| -rw-r--r-- | drivers/media/rc/fintek-cir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/rc/fintek-cir.c b/drivers/media/rc/fintek-cir.c index d2d93cbe628c..936c3f79b62c 100644 --- a/drivers/media/rc/fintek-cir.c +++ b/drivers/media/rc/fintek-cir.c @@ -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); } |