Skip to content

Commit c012cdc

Browse files
committed
Merge branch 'fix/asoc' into for-linus
2 parents 15439bd + f6b864a commit c012cdc

File tree

18 files changed

+526
-19
lines changed

18 files changed

+526
-19
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4604,7 +4604,7 @@ F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
46044604
F: arch/arm/mach-omap2/clockdomain44xx.c
46054605

46064606
OMAP AUDIO SUPPORT
4607-
M: Jarkko Nikula <jhnikula@gmail.com>
4607+
M: Jarkko Nikula <jarkko.nikula@bitmer.com>
46084608
L: [email protected] (subscribers-only)
46094609
46104610
S: Maintained

include/sound/tlv320aic3x.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Platform data for Texas Instruments TLV320AIC3x codec
33
*
4-
* Author: Jarkko Nikula <jhnikula@gmail.com>
4+
* Author: Jarkko Nikula <jarkko.nikula@bitmer.com>
55
*
66
* This program is free software; you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License version 2 as

sound/soc/codecs/wm8750.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -778,11 +778,19 @@ static int __devexit wm8750_spi_remove(struct spi_device *spi)
778778
return 0;
779779
}
780780

781+
static const struct spi_device_id wm8750_spi_ids[] = {
782+
{ "wm8750", 0 },
783+
{ "wm8987", 0 },
784+
{ },
785+
};
786+
MODULE_DEVICE_TABLE(spi, wm8750_spi_ids);
787+
781788
static struct spi_driver wm8750_spi_driver = {
782789
.driver = {
783790
.name = "wm8750-codec",
784791
.owner = THIS_MODULE,
785792
},
793+
.id_table = wm8750_spi_ids,
786794
.probe = wm8750_spi_probe,
787795
.remove = __devexit_p(wm8750_spi_remove),
788796
};

sound/soc/codecs/wm8903.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2046,8 +2046,13 @@ static int wm8903_probe(struct snd_soc_codec *codec)
20462046
/* power down chip */
20472047
static int wm8903_remove(struct snd_soc_codec *codec)
20482048
{
2049+
struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec);
2050+
20492051
wm8903_free_gpio(codec);
20502052
wm8903_set_bias_level(codec, SND_SOC_BIAS_OFF);
2053+
if (wm8903->irq)
2054+
free_irq(wm8903->irq, codec);
2055+
20512056
return 0;
20522057
}
20532058

sound/soc/codecs/wm8994.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2981,6 +2981,7 @@ static int wm8994_codec_probe(struct snd_soc_codec *codec)
29812981
wm8994->hubs.dcs_readback_mode = 1;
29822982
break;
29832983
}
2984+
break;
29842985

29852986
case WM8958:
29862987
wm8994->hubs.dcs_readback_mode = 1;

sound/soc/omap/n810.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (C) 2008 Nokia Corporation
55
*
6-
* Contact: Jarkko Nikula <jhnikula@gmail.com>
6+
* Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
77
*
88
* This program is free software; you can redistribute it and/or
99
* modify it under the terms of the GNU General Public License
@@ -402,6 +402,6 @@ static void __exit n810_soc_exit(void)
402402
module_init(n810_soc_init);
403403
module_exit(n810_soc_exit);
404404

405-
MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
405+
MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
406406
MODULE_DESCRIPTION("ALSA SoC Nokia N810");
407407
MODULE_LICENSE("GPL");

sound/soc/omap/omap-mcbsp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (C) 2008 Nokia Corporation
55
*
6-
* Contact: Jarkko Nikula <jhnikula@gmail.com>
6+
* Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
77
* Peter Ujfalusi <[email protected]>
88
*
99
* This program is free software; you can redistribute it and/or
@@ -780,6 +780,6 @@ static void __exit snd_omap_mcbsp_exit(void)
780780
}
781781
module_exit(snd_omap_mcbsp_exit);
782782

783-
MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
783+
MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
784784
MODULE_DESCRIPTION("OMAP I2S SoC Interface");
785785
MODULE_LICENSE("GPL");

sound/soc/omap/omap-mcbsp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (C) 2008 Nokia Corporation
55
*
6-
* Contact: Jarkko Nikula <jhnikula@gmail.com>
6+
* Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
77
* Peter Ujfalusi <[email protected]>
88
*
99
* This program is free software; you can redistribute it and/or

sound/soc/omap/omap-pcm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (C) 2008 Nokia Corporation
55
*
6-
* Contact: Jarkko Nikula <jhnikula@gmail.com>
6+
* Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
77
* Peter Ujfalusi <[email protected]>
88
*
99
* This program is free software; you can redistribute it and/or
@@ -436,6 +436,6 @@ static void __exit snd_omap_pcm_exit(void)
436436
}
437437
module_exit(snd_omap_pcm_exit);
438438

439-
MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>");
439+
MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@bitmer.com>");
440440
MODULE_DESCRIPTION("OMAP PCM DMA module");
441441
MODULE_LICENSE("GPL");

sound/soc/omap/omap-pcm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (C) 2008 Nokia Corporation
55
*
6-
* Contact: Jarkko Nikula <jhnikula@gmail.com>
6+
* Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
77
* Peter Ujfalusi <[email protected]>
88
*
99
* This program is free software; you can redistribute it and/or

0 commit comments

Comments
 (0)