diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2015-12-16 14:37:56 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-12-22 13:50:31 +0300 |
commit | 3e2f45708eb59179444f992ba1dc60ccf2cbdacd (patch) | |
tree | 126cd49e7d9c2d3b10b669215b0004f1825f9019 /sound/firewire/oxfw/oxfw.h | |
parent | 40540de503929ebac3844c65fad2cd32ca15d3ce (diff) | |
download | linux-3e2f45708eb59179444f992ba1dc60ccf2cbdacd.tar.xz |
ALSA: oxfw: move model-specific parameters from common structure
In previous commit, some members are moved from 'struct snd_oxfw' because
they're model-specific. There are also the other model-specific parameters
in 'struct device_info'.
This commit moves these members to model-specific structure.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/oxfw/oxfw.h')
-rw-r--r-- | sound/firewire/oxfw/oxfw.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sound/firewire/oxfw/oxfw.h b/sound/firewire/oxfw/oxfw.h index 046cd33cc41a..603815017ae0 100644 --- a/sound/firewire/oxfw/oxfw.h +++ b/sound/firewire/oxfw/oxfw.h @@ -35,9 +35,6 @@ struct device_info { const char *driver_name; const char *vendor_name; const char *model_name; - unsigned int mixer_channels; - u8 mute_fb_id; - u8 volume_fb_id; }; /* This is an arbitrary number for convinience. */ @@ -142,4 +139,4 @@ int snd_oxfw_create_midi(struct snd_oxfw *oxfw); int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw); -int snd_oxfw_add_spkr(struct snd_oxfw *oxfw); +int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, bool is_lacie); |