forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/asoc' of git://git.kernel.org/pub/scm/linux/kerne…
…l/git/tiwai/sound-2.6 into for-2.6.40
- Loading branch information
Showing
13 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5840,7 +5840,7 @@ F: include/sound/ | |
F: sound/ | ||
|
||
SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) | ||
M: Liam Girdwood <lrg@slimlogic.co.uk> | ||
M: Liam Girdwood <lrg@ti.com> | ||
M: Mark Brown <[email protected]> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git | ||
L: [email protected] (moderated for non-subscribers) | ||
|
@@ -6093,7 +6093,7 @@ F: drivers/mmc/host/tifm_sd.c | |
F: include/linux/tifm.h | ||
|
||
TI TWL4030 SERIES SOC CODEC DRIVER | ||
M: Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
M: Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
L: [email protected] (moderated for non-subscribers) | ||
S: Maintained | ||
F: sound/soc/codecs/twl4030* | ||
|
@@ -6736,7 +6736,7 @@ F: drivers/scsi/vmw_pvscsi.c | |
F: drivers/scsi/vmw_pvscsi.h | ||
|
||
VOLTAGE AND CURRENT REGULATOR FRAMEWORK | ||
M: Liam Girdwood <lrg@slimlogic.co.uk> | ||
M: Liam Girdwood <lrg@ti.com> | ||
M: Mark Brown <[email protected]> | ||
W: http://opensource.wolfsonmicro.com/node/15 | ||
W: http://www.slimlogic.co.uk/?p=48 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Copyright (C) Nokia Corporation | ||
* | ||
* Author: Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Author: Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
|
@@ -495,7 +495,7 @@ static void __exit tpa6130a2_exit(void) | |
i2c_del_driver(&tpa6130a2_i2c_driver); | ||
} | ||
|
||
MODULE_AUTHOR("Peter Ujfalusi"); | ||
MODULE_AUTHOR("Peter Ujfalusi <[email protected]>"); | ||
MODULE_DESCRIPTION("TPA6130A2 Headphone amplifier driver"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Copyright (C) 2008 Nokia Corporation | ||
* | ||
* Contact: Jarkko Nikula <[email protected]> | ||
* Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
|
@@ -146,7 +146,7 @@ static int omap_mcbsp_dai_startup(struct snd_pcm_substream *substream, | |
* 2 channels (stereo): size is 128 / 2 = 64 frames (2 * 64 words) | ||
* 4 channels: size is 128 / 4 = 32 frames (4 * 32 words) | ||
*/ | ||
if (cpu_is_omap343x() || cpu_is_omap44xx()) { | ||
if (cpu_is_omap34xx() || cpu_is_omap44xx()) { | ||
/* | ||
* Rule for the buffer size. We should not allow | ||
* smaller buffer than the FIFO size to avoid underruns | ||
|
@@ -258,7 +258,7 @@ static int omap_mcbsp_dai_hw_params(struct snd_pcm_substream *substream, | |
default: | ||
return -EINVAL; | ||
} | ||
if (cpu_is_omap343x()) { | ||
if (cpu_is_omap34xx()) { | ||
dma_data->set_threshold = omap_mcbsp_set_threshold; | ||
/* TODO: Currently, MODE_ELEMENT == MODE_FRAME */ | ||
if (omap_mcbsp_get_dma_op_mode(bus_id) == | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Copyright (C) 2008 Nokia Corporation | ||
* | ||
* Contact: Jarkko Nikula <[email protected]> | ||
* Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Copyright (C) 2008 Nokia Corporation | ||
* | ||
* Contact: Jarkko Nikula <[email protected]> | ||
* Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
|
@@ -37,7 +37,8 @@ static const struct snd_pcm_hardware omap_pcm_hardware = { | |
SNDRV_PCM_INFO_MMAP_VALID | | ||
SNDRV_PCM_INFO_INTERLEAVED | | ||
SNDRV_PCM_INFO_PAUSE | | ||
SNDRV_PCM_INFO_RESUME, | ||
SNDRV_PCM_INFO_RESUME | | ||
SNDRV_PCM_INFO_NO_PERIOD_WAKEUP, | ||
.formats = SNDRV_PCM_FMTBIT_S16_LE | | ||
SNDRV_PCM_FMTBIT_S32_LE, | ||
.period_bytes_min = 32, | ||
|
@@ -195,7 +196,7 @@ static int omap_pcm_prepare(struct snd_pcm_substream *substream) | |
if ((cpu_is_omap1510())) | ||
omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ | | ||
OMAP_DMA_LAST_IRQ | OMAP_DMA_BLOCK_IRQ); | ||
else | ||
else if (!substream->runtime->no_period_wakeup) | ||
omap_enable_dma_irq(prtd->dma_ch, OMAP_DMA_FRAME_IRQ); | ||
|
||
if (!(cpu_class_is_omap1())) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Copyright (C) 2008 Nokia Corporation | ||
* | ||
* Contact: Jarkko Nikula <[email protected]> | ||
* Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* | ||
* Copyright (C) 2008 - 2009 Nokia Corporation | ||
* | ||
* Contact: Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
* Contact: Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
* Eduardo Valentin <[email protected]> | ||
* Jarkko Nikula <[email protected]> | ||
* | ||
|