diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-11-17 09:09:46 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:20:00 -0500 |
commit | 65b29f5039b38a5854b5e12238b0688a33e235cc (patch) | |
tree | bcbb2986d8a6b247387c0f7516c8f43dddeaf07c /sound/ppc/powermac.c | |
parent | bbe85bbd02b2220c819ad1e33c9d6327131ad281 (diff) |
[ALSA] Remove xxx_t typedefs: PowerMac
Remove xxx_t typedefs from the PowerMac driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/ppc/powermac.c')
-rw-r--r-- | sound/ppc/powermac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/ppc/powermac.c b/sound/ppc/powermac.c index a6d8cbf4064f..db139cdee28b 100644 --- a/sound/ppc/powermac.c +++ b/sound/ppc/powermac.c | |||
@@ -49,15 +49,15 @@ MODULE_PARM_DESC(enable_beep, "Enable beep using PCM."); | |||
49 | * card entry | 49 | * card entry |
50 | */ | 50 | */ |
51 | 51 | ||
52 | static snd_card_t *snd_pmac_card = NULL; | 52 | static struct snd_card *snd_pmac_card = NULL; |
53 | 53 | ||
54 | /* | 54 | /* |
55 | */ | 55 | */ |
56 | 56 | ||
57 | static int __init snd_pmac_probe(void) | 57 | static int __init snd_pmac_probe(void) |
58 | { | 58 | { |
59 | snd_card_t *card; | 59 | struct snd_card *card; |
60 | pmac_t *chip; | 60 | struct snd_pmac *chip; |
61 | char *name_ext; | 61 | char *name_ext; |
62 | int err; | 62 | int err; |
63 | 63 | ||