summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorDimitris Papastamos2010-12-06 16:49:20 +0100
committerMark Brown2010-12-06 20:15:16 +0100
commit0b9a214a606f8c7c7af3e66e7fe0caf3233cfe16 (patch)
tree1977d6306dd4a3253f27179813f60e3a14a11a88 /sound/soc/soc-core.c
parentASoC: soc-core: Replace use of strncpy() with strlcpy() (diff)
downloadkernel-qcow2-linux-0b9a214a606f8c7c7af3e66e7fe0caf3233cfe16.tar.gz
kernel-qcow2-linux-0b9a214a606f8c7c7af3e66e7fe0caf3233cfe16.tar.xz
kernel-qcow2-linux-0b9a214a606f8c7c7af3e66e7fe0caf3233cfe16.zip
ASoC: soc-core: Remove useless inline function construct
There is no need to mark this function as inline. Inline functions usually are small and concise functions that benefit from not needing to set up a stack frame and undergo a call/ret sequence upon each invocation. Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index b2c327b14b00..392d33625327 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -3175,7 +3175,7 @@ static int snd_soc_unregister_card(struct snd_soc_card *card)
* Simplify DAI link configuration by removing ".-1" from device names
* and sanitizing names.
*/
-static inline char *fmt_single_name(struct device *dev, int *id)
+static char *fmt_single_name(struct device *dev, int *id)
{
char *found, name[NAME_SIZE];
int id1, id2;