[ALSA] seq: remove struct snd_seq_client_callback
The fields of struct snd_seq_client_callback either aren't used or are always set to the same value, so we can get rid of it altogether. Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
This commit is contained in:

committed by
Jaroslav Kysela

父節點
255bd169ab
當前提交
83e8ad6984
@@ -219,7 +219,6 @@ static int snd_opl3_seq_new_device(struct snd_seq_device *dev)
|
||||
{
|
||||
struct snd_opl3 *opl3;
|
||||
int client;
|
||||
struct snd_seq_client_callback callbacks;
|
||||
struct snd_seq_client_info cinfo;
|
||||
int opl_ver;
|
||||
|
||||
@@ -232,11 +231,8 @@ static int snd_opl3_seq_new_device(struct snd_seq_device *dev)
|
||||
opl3->seq_client = -1;
|
||||
|
||||
/* allocate new client */
|
||||
memset(&callbacks, 0, sizeof(callbacks));
|
||||
callbacks.private_data = opl3;
|
||||
callbacks.allow_output = callbacks.allow_input = 1;
|
||||
client = opl3->seq_client =
|
||||
snd_seq_create_kernel_client(opl3->card, opl3->seq_dev_num, &callbacks);
|
||||
snd_seq_create_kernel_client(opl3->card, opl3->seq_dev_num);
|
||||
if (client < 0)
|
||||
return client;
|
||||
|
||||
|
Reference in New Issue
Block a user