Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120309
b: refs/heads/master
c: 0d0cf00
h: refs/heads/master
i:
  120307: e62c33b
v: v3
  • Loading branch information
Mark Brown committed Dec 10, 2008
1 parent aeaeec8 commit 2e72607
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e5fa31f96d558e53fe80e943305104bf4339711
refs/heads/master: 0d0cf00a7fc63cee9a4c4a3b8612879b4f7f42ba
5 changes: 5 additions & 0 deletions trunk/include/sound/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ extern struct snd_ac97_bus_ops soc_ac97_ops;

int snd_soc_register_platform(struct snd_soc_platform *platform);
void snd_soc_unregister_platform(struct snd_soc_platform *platform);
int snd_soc_register_codec(struct snd_soc_codec *codec);
void snd_soc_unregister_codec(struct snd_soc_codec *codec);

/* pcm <-> DAI connect */
void snd_soc_free_pcms(struct snd_soc_device *socdev);
Expand Down Expand Up @@ -247,6 +249,9 @@ struct snd_soc_codec {
char *name;
struct module *owner;
struct mutex mutex;
struct device *dev;

struct list_head list;

/* callbacks */
int (*set_bias_level)(struct snd_soc_codec *,
Expand Down
43 changes: 43 additions & 0 deletions trunk/sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ static DEFINE_MUTEX(client_mutex);
static LIST_HEAD(card_list);
static LIST_HEAD(dai_list);
static LIST_HEAD(platform_list);
static LIST_HEAD(codec_list);

static int snd_soc_register_card(struct snd_soc_card *card);
static int snd_soc_unregister_card(struct snd_soc_card *card);
Expand Down Expand Up @@ -2224,6 +2225,48 @@ void snd_soc_unregister_platform(struct snd_soc_platform *platform)
}
EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);

/**
* snd_soc_register_codec - Register a codec with the ASoC core
*
* @param codec codec to register
*/
int snd_soc_register_codec(struct snd_soc_codec *codec)
{
if (!codec->name)
return -EINVAL;

/* The device should become mandatory over time */
if (!codec->dev)
printk(KERN_WARNING "No device for codec %s\n", codec->name);

INIT_LIST_HEAD(&codec->list);

mutex_lock(&client_mutex);
list_add(&codec->list, &codec_list);
snd_soc_instantiate_cards();
mutex_unlock(&client_mutex);

pr_debug("Registered codec '%s'\n", codec->name);

return 0;
}
EXPORT_SYMBOL_GPL(snd_soc_register_codec);

/**
* snd_soc_unregister_codec - Unregister a codec from the ASoC core
*
* @param codec codec to unregister
*/
void snd_soc_unregister_codec(struct snd_soc_codec *codec)
{
mutex_lock(&client_mutex);
list_del(&codec->list);
mutex_unlock(&client_mutex);

pr_debug("Unregistered codec '%s'\n", codec->name);
}
EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);

static int __init snd_soc_init(void)
{
#ifdef CONFIG_DEBUG_FS
Expand Down

0 comments on commit 2e72607

Please sign in to comment.