Merge branches 'for-2.6.38' and 'tegra-arch' into for-2.6.39
This commit is contained in:
commit
2cfec93fec
@ -16,4 +16,7 @@
|
|||||||
|
|
||||||
struct harmony_audio_platform_data {
|
struct harmony_audio_platform_data {
|
||||||
int gpio_spkr_en;
|
int gpio_spkr_en;
|
||||||
|
int gpio_hp_det;
|
||||||
|
int gpio_int_mic_en;
|
||||||
|
int gpio_ext_mic_en;
|
||||||
};
|
};
|
||||||
|
@ -367,9 +367,12 @@ static int cx20442_codec_remove(struct snd_soc_codec *codec)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const u8 cx20442_reg = CX20442_TELOUT | CX20442_MIC;
|
||||||
|
|
||||||
static struct snd_soc_codec_driver cx20442_codec_dev = {
|
static struct snd_soc_codec_driver cx20442_codec_dev = {
|
||||||
.probe = cx20442_codec_probe,
|
.probe = cx20442_codec_probe,
|
||||||
.remove = cx20442_codec_remove,
|
.remove = cx20442_codec_remove,
|
||||||
|
.reg_cache_default = &cx20442_reg,
|
||||||
.reg_cache_size = 1,
|
.reg_cache_size = 1,
|
||||||
.reg_word_size = sizeof(u8),
|
.reg_word_size = sizeof(u8),
|
||||||
.read = cx20442_read_reg_cache,
|
.read = cx20442_read_reg_cache,
|
||||||
|
@ -507,8 +507,6 @@ static int ams_delta_cx20442_init(struct snd_soc_pcm_runtime *rtd)
|
|||||||
/* Set up digital mute if not provided by the codec */
|
/* Set up digital mute if not provided by the codec */
|
||||||
if (!codec_dai->driver->ops) {
|
if (!codec_dai->driver->ops) {
|
||||||
codec_dai->driver->ops = &ams_delta_dai_ops;
|
codec_dai->driver->ops = &ams_delta_dai_ops;
|
||||||
} else if (!codec_dai->driver->ops->digital_mute) {
|
|
||||||
codec_dai->driver->ops->digital_mute = ams_delta_digital_mute;
|
|
||||||
} else {
|
} else {
|
||||||
ams_delta_ops.startup = ams_delta_startup;
|
ams_delta_ops.startup = ams_delta_startup;
|
||||||
ams_delta_ops.shutdown = ams_delta_shutdown;
|
ams_delta_ops.shutdown = ams_delta_shutdown;
|
||||||
|
Loading…
Reference in New Issue
Block a user