-
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.
yaml --- r: 187578 b: refs/heads/master c: d9e557e h: refs/heads/master v: v3
- Loading branch information
Sascha Hauer
committed
Feb 10, 2010
1 parent
07b5dbd
commit 309f366
Showing
2 changed files
with
19 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cb2dc111b156eb41f61ed4e5b3a3a5df90526d9d | ||
refs/heads/master: d9e557e5cb2052164f04af75c7d3d9bdd4111054 |
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,18 @@ | ||
#ifndef __MACH_SSI_H | ||
#define __MACH_SSI_H | ||
|
||
struct snd_ac97; | ||
|
||
extern unsigned char imx_ssi_fiq_start, imx_ssi_fiq_end; | ||
extern unsigned long imx_ssi_fiq_base, imx_ssi_fiq_tx_buffer, imx_ssi_fiq_rx_buffer; | ||
|
||
struct imx_ssi_platform_data { | ||
unsigned int flags; | ||
#define IMX_SSI_DMA (1 << 0) | ||
#define IMX_SSI_USE_AC97 (1 << 1) | ||
void (*ac97_reset) (struct snd_ac97 *ac97); | ||
void (*ac97_warm_reset)(struct snd_ac97 *ac97); | ||
}; | ||
|
||
#endif /* __MACH_SSI_H */ | ||
|