]> Git Repo - linux.git/commitdiff
ASoC: Hold client_mutex while calling snd_soc_instantiate_cards()
authorAxel Lin <[email protected]>
Mon, 6 Dec 2010 08:48:03 +0000 (16:48 +0800)
committerMark Brown <[email protected]>
Mon, 6 Dec 2010 12:53:43 +0000 (12:53 +0000)
As the comments of snd_soc_instantiate_cards() said,
snd_soc_instantiate_cards() must be called with client_mutex.

Signed-off-by: Axel Lin <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
sound/soc/soc-core.c

index 441285ade024ff33589cd22204ef5cb82a1f14ea..02ae7bea3b50401fbace05991b7472f6d6633c92 100644 (file)
@@ -3072,7 +3072,9 @@ int snd_soc_register_dais(struct device *dev,
                pr_debug("Registered DAI '%s'\n", dai->name);
        }
 
+       mutex_lock(&client_mutex);
        snd_soc_instantiate_cards();
+       mutex_unlock(&client_mutex);
        return 0;
 
 err:
This page took 0.062814 seconds and 4 git commands to generate.