Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28466
b: refs/heads/master
c: 91715ed
h: refs/heads/master
v: v3
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed Jun 22, 2006
1 parent de69cc4 commit 73ffbae
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c0d3fb39e9511c6fad17d059a3a50d1be33add24
refs/heads/master: 91715ed934fb645948ff17b6c20c6f7fd7688a70
22 changes: 0 additions & 22 deletions trunk/sound/core/seq/seq.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,25 +129,3 @@ static void __exit alsa_seq_exit(void)

module_init(alsa_seq_init)
module_exit(alsa_seq_exit)

/* seq_clientmgr.c */
EXPORT_SYMBOL(snd_seq_create_kernel_client);
EXPORT_SYMBOL(snd_seq_delete_kernel_client);
EXPORT_SYMBOL(snd_seq_kernel_client_enqueue);
EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking);
EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);
EXPORT_SYMBOL(snd_seq_kernel_client_ctl);
EXPORT_SYMBOL(snd_seq_kernel_client_write_poll);
EXPORT_SYMBOL(snd_seq_set_queue_tempo);
/* seq_memory.c */
EXPORT_SYMBOL(snd_seq_expand_var_event);
EXPORT_SYMBOL(snd_seq_dump_var_event);
/* seq_ports.c */
EXPORT_SYMBOL(snd_seq_event_port_attach);
EXPORT_SYMBOL(snd_seq_event_port_detach);
/* seq_lock.c */
#if defined(CONFIG_SMP) || defined(CONFIG_SND_DEBUG)
/*EXPORT_SYMBOL(snd_seq_sleep_in_lock);*/
/*EXPORT_SYMBOL(snd_seq_sleep_timeout_in_lock);*/
EXPORT_SYMBOL(snd_use_lock_sync_helper);
#endif
12 changes: 12 additions & 0 deletions trunk/sound/core/seq/seq_clientmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1714,6 +1714,8 @@ int snd_seq_set_queue_tempo(int client, struct snd_seq_queue_tempo *tempo)
return snd_seq_queue_timer_set_tempo(tempo->queue, client, tempo);
}

EXPORT_SYMBOL(snd_seq_set_queue_tempo);

static int snd_seq_ioctl_set_queue_tempo(struct snd_seq_client *client,
void __user *arg)
{
Expand Down Expand Up @@ -2264,6 +2266,8 @@ int snd_seq_create_kernel_client(struct snd_card *card, int client_index,
return client->number;
}

EXPORT_SYMBOL(snd_seq_create_kernel_client);

/* exported to kernel modules */
int snd_seq_delete_kernel_client(int client)
{
Expand All @@ -2280,6 +2284,7 @@ int snd_seq_delete_kernel_client(int client)
return 0;
}

EXPORT_SYMBOL(snd_seq_delete_kernel_client);

/* skeleton to enqueue event, called from snd_seq_kernel_client_enqueue
* and snd_seq_kernel_client_enqueue_blocking
Expand Down Expand Up @@ -2328,6 +2333,8 @@ int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event * ev,
return kernel_client_enqueue(client, ev, NULL, 0, atomic, hop);
}

EXPORT_SYMBOL(snd_seq_kernel_client_enqueue);

/*
* exported, called by kernel clients to enqueue events (with blocking)
*
Expand All @@ -2340,6 +2347,7 @@ int snd_seq_kernel_client_enqueue_blocking(int client, struct snd_seq_event * ev
return kernel_client_enqueue(client, ev, file, 1, atomic, hop);
}

EXPORT_SYMBOL(snd_seq_kernel_client_enqueue_blocking);

/*
* exported, called by kernel clients to dispatch events directly to other
Expand Down Expand Up @@ -2376,6 +2384,7 @@ int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event * ev,
return result;
}

EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);

/*
* exported, called by kernel clients to perform same functions as with
Expand All @@ -2396,6 +2405,7 @@ int snd_seq_kernel_client_ctl(int clientid, unsigned int cmd, void *arg)
return result;
}

EXPORT_SYMBOL(snd_seq_kernel_client_ctl);

/* exported (for OSS emulator) */
int snd_seq_kernel_client_write_poll(int clientid, struct file *file, poll_table *wait)
Expand All @@ -2413,6 +2423,8 @@ int snd_seq_kernel_client_write_poll(int clientid, struct file *file, poll_table
return 0;
}

EXPORT_SYMBOL(snd_seq_kernel_client_write_poll);

/*---------------------------------------------------------------------------*/

#ifdef CONFIG_PROC_FS
Expand Down
2 changes: 2 additions & 0 deletions trunk/sound/core/seq/seq_lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,6 @@ void snd_use_lock_sync_helper(snd_use_lock_t *lockp, const char *file, int line)
}
}

EXPORT_SYMBOL(snd_use_lock_sync_helper);

#endif
3 changes: 3 additions & 0 deletions trunk/sound/core/seq/seq_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ int snd_seq_dump_var_event(const struct snd_seq_event *event,
return 0;
}

EXPORT_SYMBOL(snd_seq_dump_var_event);


/*
* exported:
Expand Down Expand Up @@ -167,6 +169,7 @@ int snd_seq_expand_var_event(const struct snd_seq_event *event, int count, char
return err < 0 ? err : newlen;
}

EXPORT_SYMBOL(snd_seq_expand_var_event);

/*
* release this cell, free extended data if available
Expand Down
3 changes: 3 additions & 0 deletions trunk/sound/core/seq/seq_ports.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ int snd_seq_event_port_attach(int client,
return ret;
}

EXPORT_SYMBOL(snd_seq_event_port_attach);

/*
* Detach the driver from a port.
Expand All @@ -696,3 +697,5 @@ int snd_seq_event_port_detach(int client, int port)

return err;
}

EXPORT_SYMBOL(snd_seq_event_port_detach);

0 comments on commit 73ffbae

Please sign in to comment.