diff options
Diffstat (limited to 'include/sound/es1688.h')
-rw-r--r-- | include/sound/es1688.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/include/sound/es1688.h b/include/sound/es1688.h index 604f495bc8b1..fc1c47dae3da 100644 --- a/include/sound/es1688.h +++ b/include/sound/es1688.h | |||
@@ -30,7 +30,7 @@ | |||
30 | #define ES1688_HW_688 0x0001 | 30 | #define ES1688_HW_688 0x0001 |
31 | #define ES1688_HW_1688 0x0002 | 31 | #define ES1688_HW_1688 0x0002 |
32 | 32 | ||
33 | struct _snd_es1688 { | 33 | struct snd_es1688 { |
34 | unsigned long port; /* port of ESS chip */ | 34 | unsigned long port; /* port of ESS chip */ |
35 | struct resource *res_port; | 35 | struct resource *res_port; |
36 | unsigned long mpu_port; /* MPU-401 port of ESS chip */ | 36 | unsigned long mpu_port; /* MPU-401 port of ESS chip */ |
@@ -44,17 +44,15 @@ struct _snd_es1688 { | |||
44 | unsigned char pad; | 44 | unsigned char pad; |
45 | unsigned int dma_size; | 45 | unsigned int dma_size; |
46 | 46 | ||
47 | snd_card_t *card; | 47 | struct snd_card *card; |
48 | snd_pcm_t *pcm; | 48 | struct snd_pcm *pcm; |
49 | snd_pcm_substream_t *playback_substream; | 49 | struct snd_pcm_substream *playback_substream; |
50 | snd_pcm_substream_t *capture_substream; | 50 | struct snd_pcm_substream *capture_substream; |
51 | 51 | ||
52 | spinlock_t reg_lock; | 52 | spinlock_t reg_lock; |
53 | spinlock_t mixer_lock; | 53 | spinlock_t mixer_lock; |
54 | }; | 54 | }; |
55 | 55 | ||
56 | typedef struct _snd_es1688 es1688_t; | ||
57 | |||
58 | /* I/O ports */ | 56 | /* I/O ports */ |
59 | 57 | ||
60 | #define ES1688P(codec, x) ((codec)->port + e_s_s_ESS1688##x) | 58 | #define ES1688P(codec, x) ((codec)->port + e_s_s_ESS1688##x) |
@@ -107,17 +105,17 @@ typedef struct _snd_es1688 es1688_t; | |||
107 | 105 | ||
108 | */ | 106 | */ |
109 | 107 | ||
110 | void snd_es1688_mixer_write(es1688_t *chip, unsigned char reg, unsigned char data); | 108 | void snd_es1688_mixer_write(struct snd_es1688 *chip, unsigned char reg, unsigned char data); |
111 | 109 | ||
112 | int snd_es1688_create(snd_card_t * card, | 110 | int snd_es1688_create(struct snd_card *card, |
113 | unsigned long port, | 111 | unsigned long port, |
114 | unsigned long mpu_port, | 112 | unsigned long mpu_port, |
115 | int irq, | 113 | int irq, |
116 | int mpu_irq, | 114 | int mpu_irq, |
117 | int dma8, | 115 | int dma8, |
118 | unsigned short hardware, | 116 | unsigned short hardware, |
119 | es1688_t ** rchip); | 117 | struct snd_es1688 ** rchip); |
120 | int snd_es1688_pcm(es1688_t *chip, int device, snd_pcm_t ** rpcm); | 118 | int snd_es1688_pcm(struct snd_es1688 *chip, int device, struct snd_pcm ** rpcm); |
121 | int snd_es1688_mixer(es1688_t *chip); | 119 | int snd_es1688_mixer(struct snd_es1688 *chip); |
122 | 120 | ||
123 | #endif /* __SOUND_ES1688_H */ | 121 | #endif /* __SOUND_ES1688_H */ |