Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d956d1d authored by Peter Huewe's avatar Peter Huewe Committed by Jiri Kosina
Browse files

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: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 60c14a15
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1114,7 +1114,7 @@ static struct Bprotocol DSP = {
	.create = dspcreate
};

static int dsp_init(void)
static int __init dsp_init(void)
{
	int err;
	int tics;
@@ -1212,7 +1212,7 @@ static int dsp_init(void)
}


static void dsp_cleanup(void)
static void __exit dsp_cleanup(void)
{
	mISDN_unregister_Bprotocol(&DSP);