diff options
author | Peter Huewe <peterhuewe@gmx.de> | 2009-12-22 03:41:42 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-02-05 06:22:33 -0500 |
commit | 3d956d1dfffef3b19d743aa1a443ab5a300051cb (patch) | |
tree | 3f547ae5751340a7d3bf5dda3ef51058cffa396a /drivers/isdn/mISDN | |
parent | 60c14a1507a9fcd2e3b8eb53c218cb74ae404bcf (diff) |
isdn/mISDN: add __init/__exit macros to dsp_core.c
Trivial patch which adds the __init/__exit macros to the module_init/
module_exit functions of
drivers/isdn/mISDN/dsp_core.c
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/isdn/mISDN')
-rw-r--r-- | drivers/isdn/mISDN/dsp_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/mISDN/dsp_core.c b/drivers/isdn/mISDN/dsp_core.c index 43ff4d3b046e..6eac588e0a37 100644 --- a/drivers/isdn/mISDN/dsp_core.c +++ b/drivers/isdn/mISDN/dsp_core.c | |||
@@ -1114,7 +1114,7 @@ static struct Bprotocol DSP = { | |||
1114 | .create = dspcreate | 1114 | .create = dspcreate |
1115 | }; | 1115 | }; |
1116 | 1116 | ||
1117 | static int dsp_init(void) | 1117 | static int __init dsp_init(void) |
1118 | { | 1118 | { |
1119 | int err; | 1119 | int err; |
1120 | int tics; | 1120 | int tics; |
@@ -1212,7 +1212,7 @@ static int dsp_init(void) | |||
1212 | } | 1212 | } |
1213 | 1213 | ||
1214 | 1214 | ||
1215 | static void dsp_cleanup(void) | 1215 | static void __exit dsp_cleanup(void) |
1216 | { | 1216 | { |
1217 | mISDN_unregister_Bprotocol(&DSP); | 1217 | mISDN_unregister_Bprotocol(&DSP); |
1218 | 1218 | ||