Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d21685ec authored by Mark Brown's avatar Mark Brown
Browse files

Merge branch 'for-2.6.40' into for-2.6.41

parents 74ab24af ea02c63d
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -5840,7 +5840,7 @@ F: include/sound/
F:	sound/
F:	sound/


SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
M:	Liam Girdwood <lrg@slimlogic.co.uk>
M:	Liam Girdwood <lrg@ti.com>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
@@ -6093,7 +6093,7 @@ F: drivers/mmc/host/tifm_sd.c
F:	include/linux/tifm.h
F:	include/linux/tifm.h


TI TWL4030 SERIES SOC CODEC DRIVER
TI TWL4030 SERIES SOC CODEC DRIVER
M:	Peter Ujfalusi <peter.ujfalusi@nokia.com>
M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
S:	Maintained
S:	Maintained
F:	sound/soc/codecs/twl4030*
F:	sound/soc/codecs/twl4030*
@@ -6736,7 +6736,7 @@ F: drivers/scsi/vmw_pvscsi.c
F:	drivers/scsi/vmw_pvscsi.h
F:	drivers/scsi/vmw_pvscsi.h


VOLTAGE AND CURRENT REGULATOR FRAMEWORK
VOLTAGE AND CURRENT REGULATOR FRAMEWORK
M:	Liam Girdwood <lrg@slimlogic.co.uk>
M:	Liam Girdwood <lrg@ti.com>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
W:	http://opensource.wolfsonmicro.com/node/15
W:	http://opensource.wolfsonmicro.com/node/15
W:	http://www.slimlogic.co.uk/?p=48
W:	http://www.slimlogic.co.uk/?p=48

include/sound/ak4641.h

0 → 100644
+26 −0
Original line number Original line Diff line number Diff line
/*
 * AK4641 ALSA SoC Codec driver
 *
 * Copyright 2009 Philipp Zabel
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __AK4641_H
#define __AK4641_H

/**
 * struct ak4641_platform_data - platform specific AK4641 configuration
 * @gpio_power:	GPIO to control external power to AK4641
 * @gpio_npdn:	GPIO connected to AK4641 nPDN pin
 *
 * Both GPIO parameters are optional.
 */
struct ak4641_platform_data {
	int gpio_power;
	int gpio_npdn;
};

#endif /* __AK4641_H */
+2 −0
Original line number Original line Diff line number Diff line
@@ -702,6 +702,8 @@ struct snd_soc_aux_dev {
/* SoC card */
/* SoC card */
struct snd_soc_card {
struct snd_soc_card {
	const char *name;
	const char *name;
	const char *long_name;
	const char *driver_name;
	struct device *dev;
	struct device *dev;
	struct snd_card *snd_card;
	struct snd_card *snd_card;
	struct module *owner;
	struct module *owner;
+1 −1
Original line number Original line Diff line number Diff line
/*
/*
 * Platform header for Texas Instruments TLV320DAC33 codec driver
 * Platform header for Texas Instruments TLV320DAC33 codec driver
 *
 *
 * Author:	Peter Ujfalusi <peter.ujfalusi@nokia.com>
 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
 *
 *
 * Copyright:   (C) 2009 Nokia Corporation
 * Copyright:   (C) 2009 Nokia Corporation
 *
 *
+1 −1
Original line number Original line Diff line number Diff line
@@ -3,7 +3,7 @@
 *
 *
 * Copyright (C) Nokia Corporation
 * Copyright (C) Nokia Corporation
 *
 *
 * Written by Peter Ujfalusi <peter.ujfalusi@nokia.com>
 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
 *
 *
 * This program is free software; you can redistribute it and/or
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * modify it under the terms of the GNU General Public License
Loading