Commit 1ee9271d authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'asoc/topic/samsung' into asoc-next

parents 60790c57 939d3c6a
...@@ -350,8 +350,16 @@ static struct snd_soc_codec_conf bells_codec_conf[] = { ...@@ -350,8 +350,16 @@ static struct snd_soc_codec_conf bells_codec_conf[] = {
}, },
}; };
static struct snd_soc_dapm_widget bells_widgets[] = {
SND_SOC_DAPM_MIC("DMIC", NULL),
};
static struct snd_soc_dapm_route bells_routes[] = { static struct snd_soc_dapm_route bells_routes[] = {
{ "Sub CLK_SYS", NULL, "OPCLK" }, { "Sub CLK_SYS", NULL, "OPCLK" },
{ "DMIC", NULL, "MICBIAS2" },
{ "IN2L", NULL, "DMIC" },
{ "IN2R", NULL, "DMIC" },
}; };
static struct snd_soc_card bells_cards[] = { static struct snd_soc_card bells_cards[] = {
...@@ -365,6 +373,8 @@ static struct snd_soc_card bells_cards[] = { ...@@ -365,6 +373,8 @@ static struct snd_soc_card bells_cards[] = {
.late_probe = bells_late_probe, .late_probe = bells_late_probe,
.dapm_widgets = bells_widgets,
.num_dapm_widgets = ARRAY_SIZE(bells_widgets),
.dapm_routes = bells_routes, .dapm_routes = bells_routes,
.num_dapm_routes = ARRAY_SIZE(bells_routes), .num_dapm_routes = ARRAY_SIZE(bells_routes),
...@@ -383,6 +393,8 @@ static struct snd_soc_card bells_cards[] = { ...@@ -383,6 +393,8 @@ static struct snd_soc_card bells_cards[] = {
.late_probe = bells_late_probe, .late_probe = bells_late_probe,
.dapm_widgets = bells_widgets,
.num_dapm_widgets = ARRAY_SIZE(bells_widgets),
.dapm_routes = bells_routes, .dapm_routes = bells_routes,
.num_dapm_routes = ARRAY_SIZE(bells_routes), .num_dapm_routes = ARRAY_SIZE(bells_routes),
...@@ -401,6 +413,8 @@ static struct snd_soc_card bells_cards[] = { ...@@ -401,6 +413,8 @@ static struct snd_soc_card bells_cards[] = {
.late_probe = bells_late_probe, .late_probe = bells_late_probe,
.dapm_widgets = bells_widgets,
.num_dapm_widgets = ARRAY_SIZE(bells_widgets),
.dapm_routes = bells_routes, .dapm_routes = bells_routes,
.num_dapm_routes = ARRAY_SIZE(bells_routes), .num_dapm_routes = ARRAY_SIZE(bells_routes),
......
...@@ -176,7 +176,6 @@ static int snd_smdk_probe(struct platform_device *pdev) ...@@ -176,7 +176,6 @@ static int snd_smdk_probe(struct platform_device *pdev)
static int snd_smdk_remove(struct platform_device *pdev) static int snd_smdk_remove(struct platform_device *pdev)
{ {
snd_soc_unregister_card(&smdk_pcm); snd_soc_unregister_card(&smdk_pcm);
platform_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
...@@ -146,7 +146,6 @@ static int snd_smdk_probe(struct platform_device *pdev) ...@@ -146,7 +146,6 @@ static int snd_smdk_probe(struct platform_device *pdev)
static int snd_smdk_remove(struct platform_device *pdev) static int snd_smdk_remove(struct platform_device *pdev)
{ {
snd_soc_unregister_card(&smdk_pcm); snd_soc_unregister_card(&smdk_pcm);
platform_set_drvdata(pdev, NULL);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment