diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-03-19 13:32:37 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-03-19 13:32:37 -0300 |
commit | f074ff92b5b26f3a559fab1203c36e140ea8d067 (patch) | |
tree | f5e6a4466e0b46989ffa27c1e2d17258ea24b386 | |
parent | 9d1721733038bda56c38e1e0807885a85f08d7a7 (diff) | |
download | linux-3.10-f074ff92b5b26f3a559fab1203c36e140ea8d067.tar.gz linux-3.10-f074ff92b5b26f3a559fab1203c36e140ea8d067.tar.bz2 linux-3.10-f074ff92b5b26f3a559fab1203c36e140ea8d067.zip |
[media] radio-sf16fmr2: fix session mismatches
WARNING: drivers/media/radio/built-in.o(.data+0x284): Section mismatch in reference from the variable fmr2_driver to the function .init.text:fmr2_probe()
The variable fmr2_driver references
the function __init fmr2_probe()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
WARNING: drivers/media/built-in.o(.data+0x48200): Section mismatch in reference from the variable fmr2_driver to the function .init.text:fmr2_probe()
The variable fmr2_driver references
the function __init fmr2_probe()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console
Cc: Hans Verkuil <hans.verkuil@cisco.com>
Cc: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/radio/radio-sf16fmr2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-sf16fmr2.c b/drivers/media/radio/radio-sf16fmr2.c index b18be64b255..7c69214334b 100644 --- a/drivers/media/radio/radio-sf16fmr2.c +++ b/drivers/media/radio/radio-sf16fmr2.c @@ -186,7 +186,7 @@ static int fmr2_tea_ext_init(struct snd_tea575x *tea) return 0; } -static int __init fmr2_probe(struct device *pdev, unsigned int dev) +static int __devinit fmr2_probe(struct device *pdev, unsigned int dev) { struct fmr2 *fmr2; int err; |