Skip to content

Commit

Permalink
media/dvb: add __init/__exit macros to bt878.c
Browse files Browse the repository at this point in the history
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of

drivers/media/dvb/bt8xx/bt878.c

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Peter Huewe authored and Jiri Kosina committed Feb 5, 2010
1 parent 73a98fc commit 60c14a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/bt8xx/bt878.c
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ static int bt878_pci_driver_registered;
/* Module management functions */
/*******************************/

static int bt878_init_module(void)
static int __init bt878_init_module(void)
{
bt878_num = 0;
bt878_pci_driver_registered = 0;
Expand All @@ -600,7 +600,7 @@ static int bt878_init_module(void)
return pci_register_driver(&bt878_pci_driver);
}

static void bt878_cleanup_module(void)
static void __exit bt878_cleanup_module(void)
{
if (bt878_pci_driver_registered) {
bt878_pci_driver_registered = 0;
Expand Down

0 comments on commit 60c14a1

Please sign in to comment.