Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170143
b: refs/heads/master
c: 08aff8c
h: refs/heads/master
i:
  170141: f664804
  170139: 48c2969
  170135: 8e2169e
  170127: 566db03
  170111: 32f4783
v: v3
  • Loading branch information
Mark Brown committed Aug 18, 2009
1 parent 199d83d commit e447554
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d97d2e35b903b11dc6f7f8fcbe9a82fd8929e234
refs/heads/master: 08aff8cd7a8568588d460c4bf8875a492d430314
2 changes: 1 addition & 1 deletion trunk/sound/soc/codecs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ config SND_SOC_ALL_CODECS
select SND_SOC_WM8510 if SND_SOC_I2C_AND_SPI
select SND_SOC_WM8523 if I2C
select SND_SOC_WM8580 if I2C
select SND_SOC_WM8711 if I2C
select SND_SOC_WM8711 if SND_SOC_I2C_AND_SPI
select SND_SOC_WM8728 if SND_SOC_I2C_AND_SPI
select SND_SOC_WM8731 if SND_SOC_I2C_AND_SPI
select SND_SOC_WM8750 if SND_SOC_I2C_AND_SPI
Expand Down
66 changes: 66 additions & 0 deletions trunk/sound/soc/codecs/wm8711.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,62 @@ static void wm8711_unregister(struct wm8711_priv *wm8711)
wm8711_codec = NULL;
}

#if defined(CONFIG_SPI_MASTER)
static int __devinit wm8711_spi_probe(struct spi_device *spi)
{
struct snd_soc_codec *codec;
struct wm8711_priv *wm8711;

wm8711 = kzalloc(sizeof(struct wm8711_priv), GFP_KERNEL);
if (wm8711 == NULL)
return -ENOMEM;

codec = &wm8711->codec;
codec->control_data = spi;
codec->dev = &spi->dev;

dev_set_drvdata(&spi->dev, wm8711);

return wm8711_register(wm8711, SND_SOC_SPI);
}

static int __devexit wm8711_spi_remove(struct spi_device *spi)
{
struct wm8711_priv *wm8711 = dev_get_drvdata(&spi->dev);

wm8711_unregister(wm8711);

return 0;
}

#ifdef CONFIG_PM
static int wm8711_spi_suspend(struct spi_device *spi, pm_message_t msg)
{
return snd_soc_suspend_device(&spi->dev);
}

static int wm8711_spi_resume(struct spi_device *spi)
{
return snd_soc_resume_device(&spi->dev);
}
#else
#define wm8711_spi_suspend NULL
#define wm8711_spi_resume NULL
#endif

static struct spi_driver wm8711_spi_driver = {
.driver = {
.name = "wm8711",
.bus = &spi_bus_type,
.owner = THIS_MODULE,
},
.probe = wm8711_spi_probe,
.suspend = wm8711_spi_suspend,
.resume = wm8711_spi_resume,
.remove = __devexit_p(wm8711_spi_remove),
};
#endif /* CONFIG_SPI_MASTER */

#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
static __devinit int wm8711_i2c_probe(struct i2c_client *i2c,
const struct i2c_device_id *id)
Expand Down Expand Up @@ -590,6 +646,13 @@ static int __init wm8711_modinit(void)
printk(KERN_ERR "Failed to register WM8711 I2C driver: %d\n",
ret);
}
#endif
#if defined(CONFIG_SPI_MASTER)
ret = spi_register_driver(&wm8731_spi_driver);
if (ret != 0) {
printk(KERN_ERR "Failed to register WM8731 SPI driver: %d\n",
ret);
}
#endif
return 0;
}
Expand All @@ -600,6 +663,9 @@ static void __exit wm8711_exit(void)
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
i2c_del_driver(&wm8711_i2c_driver);
#endif
#if defined(CONFIG_SPI_MASTER)
spi_unregister_driver(&wm8731_spi_driver);
#endif
}
module_exit(wm8711_exit);

Expand Down

0 comments on commit e447554

Please sign in to comment.