aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq/seq_info.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2005-11-17 08:04:02 -0500
committerJaroslav Kysela <perex@suse.cz>2006-01-03 06:17:52 -0500
commitc7e0b5bf9fff1b726495081447c107a2333fb82c (patch)
treef4d9ec9a6446f8e2afde4c94e10a39f2b86a0bc9 /sound/core/seq/seq_info.c
parent6ac77bc180fbd985988015020c2e2347e802959d (diff)
[ALSA] Remove xxx_t typedefs: Sequencer
Modules: ALSA sequencer Remove xxx_t typedefs from the core sequencer codes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/seq/seq_info.c')
-rw-r--r--sound/core/seq/seq_info.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/sound/core/seq/seq_info.c b/sound/core/seq/seq_info.c
index b50b695c41c..3257cf4ec25 100644
--- a/sound/core/seq/seq_info.c
+++ b/sound/core/seq/seq_info.c
@@ -28,15 +28,16 @@
28#include "seq_timer.h" 28#include "seq_timer.h"
29 29
30 30
31static snd_info_entry_t *queues_entry; 31static struct snd_info_entry *queues_entry;
32static snd_info_entry_t *clients_entry; 32static struct snd_info_entry *clients_entry;
33static snd_info_entry_t *timer_entry; 33static struct snd_info_entry *timer_entry;
34 34
35 35
36static snd_info_entry_t * __init 36static struct snd_info_entry * __init
37create_info_entry(char *name, int size, void (*read)(snd_info_entry_t *, snd_info_buffer_t *)) 37create_info_entry(char *name, int size, void (*read)(struct snd_info_entry *,
38 struct snd_info_buffer *))
38{ 39{
39 snd_info_entry_t *entry; 40 struct snd_info_entry *entry;
40 41
41 entry = snd_info_create_module_entry(THIS_MODULE, name, snd_seq_root); 42 entry = snd_info_create_module_entry(THIS_MODULE, name, snd_seq_root);
42 if (entry == NULL) 43 if (entry == NULL)