-
Notifications
You must be signed in to change notification settings - Fork 0
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.35
- Loading branch information
Showing
11 changed files
with
619 additions
and
143 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Platform data for Texas Instruments TLV320AIC3x codec | ||
* | ||
* Author: Jarkko Nikula <jhnikula@gmail.com> | ||
* | ||
* 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 __TLV320AIC3x_H__ | ||
#define __TLV320AIC3x_H__ | ||
|
||
struct aic3x_pdata { | ||
int gpio_reset; /* < 0 if not used */ | ||
}; | ||
|
||
#endif |
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ enum tpa_model { | |
struct tpa6130a2_platform_data { | ||
enum tpa_model id; | ||
int power_gpio; | ||
int limit_gain; | ||
}; | ||
|
||
#endif |
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
Oops, something went wrong.