diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 09:12:11 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:20:09 -0500 |
commit | 67b1020d88a77a73bd9ccbc21733c155a4d7d44c (patch) | |
tree | 996fad816752751d467e70e632f7953fd872e7d5 /sound/parisc/harmony.h | |
parent | 475675d6931ec03cf9575b26e30800fe64898ee0 (diff) |
[ALSA] Remove xxx_t typedefs: PARISC Harmony
Modules: PARISC Harmony driver
Remove xxx_t typedefs from the PARIC Harmony driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/parisc/harmony.h')
-rw-r--r-- | sound/parisc/harmony.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/parisc/harmony.h b/sound/parisc/harmony.h index 526c52389de2..2e434523fedf 100644 --- a/sound/parisc/harmony.h +++ b/sound/parisc/harmony.h | |||
@@ -13,7 +13,7 @@ struct harmony_buffer { | |||
13 | int coherent; | 13 | int coherent; |
14 | }; | 14 | }; |
15 | 15 | ||
16 | typedef struct snd_card_harmony { | 16 | struct snd_harmony { |
17 | int irq; | 17 | int irq; |
18 | 18 | ||
19 | unsigned long hpa; /* hard physical address */ | 19 | unsigned long hpa; /* hard physical address */ |
@@ -44,15 +44,15 @@ typedef struct snd_card_harmony { | |||
44 | unsigned long silence_intr; | 44 | unsigned long silence_intr; |
45 | } stats; | 45 | } stats; |
46 | 46 | ||
47 | snd_pcm_t *pcm; | 47 | struct snd_pcm *pcm; |
48 | snd_card_t *card; | 48 | struct snd_card *card; |
49 | snd_pcm_substream_t *psubs; | 49 | struct snd_pcm_substream *psubs; |
50 | snd_pcm_substream_t *csubs; | 50 | struct snd_pcm_substream *csubs; |
51 | snd_info_entry_t *proc; | 51 | struct snd_info_entry *proc; |
52 | 52 | ||
53 | spinlock_t lock; | 53 | spinlock_t lock; |
54 | spinlock_t mixer_lock; | 54 | spinlock_t mixer_lock; |
55 | } harmony_t; | 55 | }; |
56 | 56 | ||
57 | #define MAX_PCM_DEVICES 1 | 57 | #define MAX_PCM_DEVICES 1 |
58 | #define MAX_PCM_SUBSTREAMS 4 | 58 | #define MAX_PCM_SUBSTREAMS 4 |