mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
isdn/hardware: add __init/__exit macros to mISDNisar.c
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 <peterhuewe@gmx.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
71709247aa
commit
8885074038
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue