ALSA: usb-audio: move and add some comments
[deliverable/linux.git] / include / linux / usb / audio-v2.h
index 716aebe339e8b4c8ae2e6f3fe77560004a3e9bbb..964cb603f7c768409d759b5ee6bbdac3d6bf23a8 100644 (file)
 /* v1.0 and v2.0 of this standard have many things in common. For the rest
  * of the definitions, please refer to audio.h */
 
+/*
+ * bmControl field decoders
+ *
+ * From the USB Audio spec v2.0:
+ *
+ *   bmaControls() is a (ch+1)-element array of 4-byte bitmaps,
+ *   each containing a set of bit pairs. If a Control is present,
+ *   it must be Host readable. If a certain Control is not
+ *   present then the bit pair must be set to 0b00.
+ *   If a Control is present but read-only, the bit pair must be
+ *   set to 0b01. If a Control is also Host programmable, the bit
+ *   pair must be set to 0b11. The value 0b10 is not allowed.
+ *
+ */
+
 static inline bool uac2_control_is_readable(u32 bmControls, u8 control)
 {
        return (bmControls >> (control * 2)) & 0x1;
This page took 0.027047 seconds and 5 git commands to generate.