diff options
Diffstat (limited to 'sound/soc/au1x/i2sc.c')
-rw-r--r-- | sound/soc/au1x/i2sc.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sound/soc/au1x/i2sc.c b/sound/soc/au1x/i2sc.c index 072448afc219..b3f37f6edbcb 100644 --- a/sound/soc/au1x/i2sc.c +++ b/sound/soc/au1x/i2sc.c | |||
@@ -225,6 +225,10 @@ static struct snd_soc_dai_driver au1xi2s_dai_driver = { | |||
225 | .ops = &au1xi2s_dai_ops, | 225 | .ops = &au1xi2s_dai_ops, |
226 | }; | 226 | }; |
227 | 227 | ||
228 | static const struct snd_soc_component_driver au1xi2s_component = { | ||
229 | .name = "au1xi2s", | ||
230 | }; | ||
231 | |||
228 | static int au1xi2s_drvprobe(struct platform_device *pdev) | 232 | static int au1xi2s_drvprobe(struct platform_device *pdev) |
229 | { | 233 | { |
230 | struct resource *iores, *dmares; | 234 | struct resource *iores, *dmares; |
@@ -260,14 +264,15 @@ static int au1xi2s_drvprobe(struct platform_device *pdev) | |||
260 | 264 | ||
261 | platform_set_drvdata(pdev, ctx); | 265 | platform_set_drvdata(pdev, ctx); |
262 | 266 | ||
263 | return snd_soc_register_dai(&pdev->dev, &au1xi2s_dai_driver); | 267 | return snd_soc_register_component(&pdev->dev, &au1xi2s_component, |
268 | &au1xi2s_dai_driver, 1); | ||
264 | } | 269 | } |
265 | 270 | ||
266 | static int au1xi2s_drvremove(struct platform_device *pdev) | 271 | static int au1xi2s_drvremove(struct platform_device *pdev) |
267 | { | 272 | { |
268 | struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev); | 273 | struct au1xpsc_audio_data *ctx = platform_get_drvdata(pdev); |
269 | 274 | ||
270 | snd_soc_unregister_dai(&pdev->dev); | 275 | snd_soc_unregister_component(&pdev->dev); |
271 | 276 | ||
272 | WR(ctx, I2S_ENABLE, EN_D); /* clock off, disable */ | 277 | WR(ctx, I2S_ENABLE, EN_D); /* clock off, disable */ |
273 | 278 | ||