Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / sound / soc / pxa / mioa701_wm9713.c
index 595eee341e90b6910d60348fdae5e970e0854fa6..396dbd51a64f0183d787841b78a35adffd96de2f 100644 (file)
@@ -127,15 +127,12 @@ static const struct snd_soc_dapm_route audio_map[] = {
 static int mioa701_wm9713_init(struct snd_soc_pcm_runtime *rtd)
 {
        struct snd_soc_codec *codec = rtd->codec;
-       unsigned short reg;
 
        /* Prepare GPIO8 for rear speaker amplifier */
-       reg = codec->driver->read(codec, AC97_GPIO_CFG);
-       codec->driver->write(codec, AC97_GPIO_CFG, reg | 0x0100);
+       snd_soc_update_bits(codec, AC97_GPIO_CFG, 0x100, 0x100);
 
        /* Prepare MIC input */
-       reg = codec->driver->read(codec, AC97_3D_CONTROL);
-       codec->driver->write(codec, AC97_3D_CONTROL, reg | 0xc000);
+       snd_soc_update_bits(codec, AC97_3D_CONTROL, 0xc000, 0xc000);
 
        return 0;
 }
@@ -205,7 +202,6 @@ static struct platform_driver mioa701_wm9713_driver = {
        .remove         = mioa701_wm9713_remove,
        .driver         = {
                .name           = "mioa701-wm9713",
-               .owner          = THIS_MODULE,
                .pm     = &snd_soc_pm_ops,
        },
 };
This page took 0.032737 seconds and 5 git commands to generate.