Fix the __init/__exit annotations
authorMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 28 Jan 2010 02:28:58 +0000 (00:28 -0200)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 26 Feb 2010 18:10:48 +0000 (15:10 -0300)
WARNING: drivers/media/video/cx18/cx18-alsa.o(.text+0x4de): Section
mismatch in reference from the function cx18_alsa_load() to the function
.init.text:snd_cx18_init()
The function cx18_alsa_load() references
the function __init snd_cx18_init().
This is often because cx18_alsa_load lacks a __init
annotation or the annotation of snd_cx18_init is wrong.

WARNING: drivers/media/video/cx18/built-in.o(.text+0x1c022): Section
mismatch in reference from the function cx18_alsa_load() to the function
.init.text:snd_cx18_init()
The function cx18_alsa_load() references
the function __init snd_cx18_init().
This is often because cx18_alsa_load lacks a __init
annotation or the annotation of snd_cx18_init is wrong.

WARNING: drivers/media/video/built-in.o(.text+0x28cc56): Section
mismatch in reference from the function cx18_alsa_load() to the function
.init.text:snd_cx18_init()
The function cx18_alsa_load() references
the function __init snd_cx18_init().
This is often because cx18_alsa_load lacks a __init
annotation or the annotation of snd_cx18_init is wrong.

WARNING: drivers/media/built-in.o(.text+0x2d2432): Section mismatch in
reference from the function cx18_alsa_load() to the function
.init.text:snd_cx18_init()
The function cx18_alsa_load() references
the function __init snd_cx18_init().
This is often because cx18_alsa_load lacks a __init
annotation or the annotation of snd_cx18_init is wrong.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/cx18/cx18-alsa-main.c

index 9efabf5..eb41d7e 100644 (file)
@@ -94,7 +94,7 @@ static void snd_cx18_card_private_free(struct snd_card *sc)
        sc->private_free = NULL;
 }
 
-static int __init snd_cx18_card_create(struct v4l2_device *v4l2_dev,
+static int snd_cx18_card_create(struct v4l2_device *v4l2_dev,
                                       struct snd_card *sc,
                                       struct snd_cx18_card **cxsc)
 {
@@ -111,7 +111,7 @@ static int __init snd_cx18_card_create(struct v4l2_device *v4l2_dev,
        return 0;
 }
 
-static int __init snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
+static int snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
 {
        struct cx18 *cx = to_cx18(cxsc->v4l2_dev);
        struct snd_card *sc = cxsc->sc;
@@ -131,7 +131,7 @@ static int __init snd_cx18_card_set_names(struct snd_cx18_card *cxsc)
        return 0;
 }
 
-static int __init snd_cx18_init(struct v4l2_device *v4l2_dev)
+static int snd_cx18_init(struct v4l2_device *v4l2_dev)
 {
        struct cx18 *cx = to_cx18(v4l2_dev);
        struct snd_card *sc = NULL;
@@ -242,7 +242,7 @@ static int __init cx18_alsa_init(void)
        return 0;
 }
 
-static void snd_cx18_exit(struct snd_cx18_card *cxsc)
+static void __exit snd_cx18_exit(struct snd_cx18_card *cxsc)
 {
        struct cx18 *cx = to_cx18(cxsc->v4l2_dev);
 
@@ -252,7 +252,7 @@ static void snd_cx18_exit(struct snd_cx18_card *cxsc)
        cx->alsa = NULL;
 }
 
-static int cx18_alsa_exit_callback(struct device *dev, void *data)
+static int __exit cx18_alsa_exit_callback(struct device *dev, void *data)
 {
        struct v4l2_device *v4l2_dev = dev_get_drvdata(dev);
        struct snd_cx18_card *cxsc;
@@ -274,7 +274,7 @@ static int cx18_alsa_exit_callback(struct device *dev, void *data)
        return 0;
 }
 
-static void cx18_alsa_exit(void)
+static void __exit cx18_alsa_exit(void)
 {
        struct device_driver *drv;
        int ret;