mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +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
@ -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 New Issue
Block a user