mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
[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: Alan Horstmann <gineera@aspect135.co.uk> Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
This commit is contained in:
parent
887709be90
commit
78fc030bdb
@ -320,8 +320,8 @@ snd_seq_midisynth_register_port(struct snd_seq_device *dev)
|
||||
}
|
||||
client->seq_client =
|
||||
snd_seq_create_kernel_client(
|
||||
card, 0, "%s", info->name[0] ?
|
||||
(const char *)info->name : "External MIDI");
|
||||
card, 0, "%s", card->shortname[0] ?
|
||||
(const char *)card->shortname : "External MIDI");
|
||||
if (client->seq_client < 0) {
|
||||
kfree(client);
|
||||
mutex_unlock(®ister_mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user