Skip to content

Commit

Permalink
isdn/hardware: add __init/__exit macros to mISDNisar.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/isdn/hardware/mISDN/mISDNisar.c

Signed-off-by: Peter Huewe <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
PeterHuewe authored and Jiri Kosina committed Feb 5, 2010
1 parent 7170924 commit 8885074
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/isdn/hardware/mISDN/mISDNisar.c
Original file line number Diff line number Diff line change
Expand Up @@ -1712,13 +1712,13 @@ mISDNisar_init(struct isar_hw *isar, void *hw)
}
EXPORT_SYMBOL(mISDNisar_init);

static int isar_mod_init(void)
static int __init isar_mod_init(void)
{
pr_notice("mISDN: ISAR driver Rev. %s\n", ISAR_REV);
return 0;
}

static void isar_mod_cleanup(void)
static void __exit isar_mod_cleanup(void)
{
pr_notice("mISDN: ISAR module unloaded\n");
}
Expand Down

0 comments on commit 8885074

Please sign in to comment.