diff options
Diffstat (limited to 'sound/firewire/amdtp.h')
-rw-r--r-- | sound/firewire/amdtp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/firewire/amdtp.h b/sound/firewire/amdtp.h index 1ca1a193bbc0..f334ae51e44f 100644 --- a/sound/firewire/amdtp.h +++ b/sound/firewire/amdtp.h | |||
@@ -21,6 +21,8 @@ | |||
21 | * @CIP_EMPTY_WITH_TAG0: Only for in-stream. Empty in-packets have TAG0. | 21 | * @CIP_EMPTY_WITH_TAG0: Only for in-stream. Empty in-packets have TAG0. |
22 | * @CIP_DBC_IS_END_EVENT: Only for in-stream. The value of dbc in an in-packet | 22 | * @CIP_DBC_IS_END_EVENT: Only for in-stream. The value of dbc in an in-packet |
23 | * corresponds to the end of event in the packet. Out of IEC 61883. | 23 | * corresponds to the end of event in the packet. Out of IEC 61883. |
24 | * @CIP_WRONG_DBS: Only for in-stream. The value of dbs is wrong in in-packets. | ||
25 | * The value of data_block_quadlets is used instead of reported value. | ||
24 | */ | 26 | */ |
25 | enum cip_flags { | 27 | enum cip_flags { |
26 | CIP_NONBLOCKING = 0x00, | 28 | CIP_NONBLOCKING = 0x00, |
@@ -28,6 +30,7 @@ enum cip_flags { | |||
28 | CIP_SYNC_TO_DEVICE = 0x02, | 30 | CIP_SYNC_TO_DEVICE = 0x02, |
29 | CIP_EMPTY_WITH_TAG0 = 0x04, | 31 | CIP_EMPTY_WITH_TAG0 = 0x04, |
30 | CIP_DBC_IS_END_EVENT = 0x08, | 32 | CIP_DBC_IS_END_EVENT = 0x08, |
33 | CIP_WRONG_DBS = 0x10, | ||
31 | }; | 34 | }; |
32 | 35 | ||
33 | /** | 36 | /** |