]> Git Repo - linux.git/commitdiff
ASoC: ab8500-codec: don't export static symbol
authorJulia Lawall <[email protected]>
Wed, 11 Mar 2015 16:56:33 +0000 (17:56 +0100)
committerMark Brown <[email protected]>
Wed, 11 Mar 2015 18:28:49 +0000 (18:28 +0000)
The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r@
type T;
identifier f;
@@

static T f (...) { ... }

@@
identifier r.f;
declarer name EXPORT_SYMBOL_GPL;
@@

-EXPORT_SYMBOL_GPL(f);
// </smpl>

Signed-off-by: Julia Lawall <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/codecs/ab8500-codec.c

index 7895689588daa8db7ab023361b9e4c65bf9851c2..88ca9cb0ce79374f9e9e02d0530ff689efdbbefe 100644 (file)
@@ -2003,7 +2003,6 @@ static int ab8500_audio_setup_mics(struct snd_soc_codec *codec,
 
        return 0;
 }
-EXPORT_SYMBOL_GPL(ab8500_audio_setup_mics);
 
 static int ab8500_audio_set_ear_cmv(struct snd_soc_codec *codec,
                                enum ear_cm_voltage ear_cmv)
@@ -2036,7 +2035,6 @@ static int ab8500_audio_set_ear_cmv(struct snd_soc_codec *codec,
 
        return 0;
 }
-EXPORT_SYMBOL_GPL(ab8500_audio_set_ear_cmv);
 
 static int ab8500_audio_set_bit_delay(struct snd_soc_dai *dai,
                                unsigned int delay)
This page took 0.070911 seconds and 4 git commands to generate.