diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2010-03-04 13:46:15 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-03-05 02:18:32 -0500 |
commit | 015eb0b08150c6fef843efe22609589ead3d4fb8 (patch) | |
tree | 3ffcb8b5be54355761d94001a8c5415c965daccd /sound/usb/card.h | |
parent | e11b4e0e4f5ab40ec342dc07b7201c09a45f9574 (diff) |
ALSA: usb-audio: use a format bitmask per alternate setting
In preparation for USB audio 2.0 support, change the audioformat
structure so that it uses a bitmask to specify possible formats.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/card.h')
-rw-r--r-- | sound/usb/card.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/card.h b/sound/usb/card.h index 856d71b7407d..ed92420c1095 100644 --- a/sound/usb/card.h +++ b/sound/usb/card.h | |||
@@ -9,7 +9,7 @@ | |||
9 | 9 | ||
10 | struct audioformat { | 10 | struct audioformat { |
11 | struct list_head list; | 11 | struct list_head list; |
12 | snd_pcm_format_t format; /* format type */ | 12 | u64 formats; /* ALSA format bits */ |
13 | unsigned int channels; /* # channels */ | 13 | unsigned int channels; /* # channels */ |
14 | unsigned int fmt_type; /* USB audio format type (1-3) */ | 14 | unsigned int fmt_type; /* USB audio format type (1-3) */ |
15 | unsigned int frame_size; /* samples per frame for non-audio */ | 15 | unsigned int frame_size; /* samples per frame for non-audio */ |