From 6bdebcf2b607568a4e4dd2019f65af486f8d5e94 Mon Sep 17 00:00:00 2001 From: Dirk Behme Date: Tue, 4 Jul 2006 00:55:42 -0700 Subject: [PATCH] ARM: OMAP: Fix section mismatch warnings Fix warnings WARNING: drivers/pcmcia/omap_cf.o - Section mismatch: reference to .init.text: from .data between '' (at offset 0x80) and 'omap_cf_ops' WARNING: sound/arm/omap/snd-omap-alsa-aic23.o - Section mismatch: reference to .init.text: from .data between '' (at offset 0x68) and 'aic23_hw_constraints_rates' Signed-off-by: Dirk Behme Signed-off-by: Tony Lindgren --- drivers/pcmcia/omap_cf.c | 2 +- sound/arm/omap/omap-alsa-aic23.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pcmcia/omap_cf.c b/drivers/pcmcia/omap_cf.c index 0fbcb7358f0..df604b3a0a1 100644 --- a/drivers/pcmcia/omap_cf.c +++ b/drivers/pcmcia/omap_cf.c @@ -203,7 +203,7 @@ static struct pccard_operations omap_cf_ops = { * "what chipselect is used". Boards could want more. */ -static int __init omap_cf_probe(struct device *dev) +static int __devinit omap_cf_probe(struct device *dev) { unsigned seg; struct omap_cf_socket *cf; diff --git a/sound/arm/omap/omap-alsa-aic23.c b/sound/arm/omap/omap-alsa-aic23.c index 293c2d467c4..b48396176ed 100644 --- a/sound/arm/omap/omap-alsa-aic23.c +++ b/sound/arm/omap/omap-alsa-aic23.c @@ -271,7 +271,7 @@ int aic23_get_default_samplerate(void) return DEFAULT_SAMPLE_RATE; } -static int __init snd_omap_alsa_aic23_probe(struct platform_device *pdev) +static int __devinit snd_omap_alsa_aic23_probe(struct platform_device *pdev) { int ret; struct omap_alsa_codec_config *codec_cfg; -- 2.41.1