Skip to content

Commit

Permalink
ASoC: Remove per card platform list
Browse files Browse the repository at this point in the history
The platform_dev_list was added in commit f0fba2a ("ASoC: multi-component -
ASoC Multi-Component Support") and while platforms are added and remove from
that list it is otherwise unused. This patch removes it again.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Lars-Peter Clausen authored and Mark Brown committed Jul 22, 2014
1 parent 3d9501a commit 9898e1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions include/sound/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,6 @@ struct snd_soc_platform {

struct snd_soc_card *card;
struct list_head list;
struct list_head card_list;

struct snd_soc_component component;

Expand Down Expand Up @@ -1056,7 +1055,6 @@ struct snd_soc_card {

/* lists of probed devices belonging to this card */
struct list_head codec_dev_list;
struct list_head platform_dev_list;

struct list_head widgets;
struct list_head paths;
Expand Down Expand Up @@ -1299,7 +1297,6 @@ static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd)
static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)
{
INIT_LIST_HEAD(&card->codec_dev_list);
INIT_LIST_HEAD(&card->platform_dev_list);
INIT_LIST_HEAD(&card->widgets);
INIT_LIST_HEAD(&card->paths);
INIT_LIST_HEAD(&card->dapm_list);
Expand Down
2 changes: 0 additions & 2 deletions sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,6 @@ static int soc_remove_platform(struct snd_soc_platform *platform)

soc_cleanup_platform_debugfs(platform);
platform->probed = 0;
list_del(&platform->card_list);
module_put(platform->dev->driver->owner);

return 0;
Expand Down Expand Up @@ -1297,7 +1296,6 @@ static int soc_probe_platform(struct snd_soc_card *card,

/* mark platform as probed and add to card platform list */
platform->probed = 1;
list_add(&platform->card_list, &card->platform_dev_list);
list_add(&platform->component.dapm.list, &card->dapm_list);

return 0;
Expand Down

0 comments on commit 9898e1c

Please sign in to comment.