diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2020-05-10 10:42:59 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-05-10 13:03:49 +0300 |
commit | 782222bab83a31f70c427b59587ada963d6c59c3 (patch) | |
tree | dbb295c0018626eb2b69de00ba82f2dae1887492 /sound/firewire/fireface/ff.h | |
parent | c52f232e11077555cdd515f25376afa54ac36296 (diff) | |
download | linux-782222bab83a31f70c427b59587ada963d6c59c3.tar.xz |
ALSA: fireface: code refactoring to decide name of sound card
This commit uses enumeration constants as index of table for the
list of name of sound card.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20200510074301.116224-5-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/fireface/ff.h')
-rw-r--r-- | sound/firewire/fireface/ff.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/firewire/fireface/ff.h b/sound/firewire/fireface/ff.h index 62ad921c3706..0c4fe7cff84d 100644 --- a/sound/firewire/fireface/ff.h +++ b/sound/firewire/fireface/ff.h @@ -49,8 +49,6 @@ enum snd_ff_stream_mode { struct snd_ff_protocol; struct snd_ff_spec { - const char *const name; - const unsigned int pcm_capture_channels[SND_FF_STREAM_MODE_COUNT]; const unsigned int pcm_playback_channels[SND_FF_STREAM_MODE_COUNT]; @@ -72,6 +70,7 @@ struct snd_ff { bool registered; struct delayed_work dwork; + enum snd_ff_unit_version unit_version; const struct snd_ff_spec *spec; /* To handle MIDI tx. */ |