Commit 78fc030b authored by Alan Horstmann's avatar Alan Horstmann Committed by Jaroslav Kysela

[ALSA] Change seq_midi.c so client name is card, rather than port, specific

Change snd_seq_midisynth_register_port() in seq_midi.c so that if a new client
is created, the client name string is based on card->shortname not
(port-specific) info->name.
Signed-off-by: default avatarAlan Horstmann <gineera@aspect135.co.uk>
Signed-off-by: default avatarClemens Ladisch <clemens@ladisch.de>
parent 887709be
...@@ -320,8 +320,8 @@ snd_seq_midisynth_register_port(struct snd_seq_device *dev) ...@@ -320,8 +320,8 @@ snd_seq_midisynth_register_port(struct snd_seq_device *dev)
} }
client->seq_client = client->seq_client =
snd_seq_create_kernel_client( snd_seq_create_kernel_client(
card, 0, "%s", info->name[0] ? card, 0, "%s", card->shortname[0] ?
(const char *)info->name : "External MIDI"); (const char *)card->shortname : "External MIDI");
if (client->seq_client < 0) { if (client->seq_client < 0) {
kfree(client); kfree(client);
mutex_unlock(&register_mutex); mutex_unlock(&register_mutex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment