summaryrefslogtreecommitdiffstats
path: root/drivers/staging/most/mostcore/mostcore.h
diff options
context:
space:
mode:
authorAndrey Shvetsov2016-09-21 14:49:10 +0200
committerGreg Kroah-Hartman2016-09-22 11:54:47 +0200
commit0540609fe217c3eed5804bcc095b0c41db5e63b0 (patch)
tree1b85ad729e8966cbcccb89b7978e1731e823cc9d /drivers/staging/most/mostcore/mostcore.h
parentstaging: most: clean up configuration strings (diff)
downloadkernel-qcow2-linux-0540609fe217c3eed5804bcc095b0c41db5e63b0.tar.gz
kernel-qcow2-linux-0540609fe217c3eed5804bcc095b0c41db5e63b0.tar.xz
kernel-qcow2-linux-0540609fe217c3eed5804bcc095b0c41db5e63b0.zip
staging: most: replace MOST_CH_ISOC_AVP with MOST_CH_ISOC
This patch replaces the enum value MOST_CH_ISOC_AVP with the more appropriate MOST_CH_ISOC. Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de> Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/mostcore/mostcore.h')
-rw-r--r--drivers/staging/most/mostcore/mostcore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/most/mostcore/mostcore.h b/drivers/staging/most/mostcore/mostcore.h
index 7644f4406218..5f8339bd046f 100644
--- a/drivers/staging/most/mostcore/mostcore.h
+++ b/drivers/staging/most/mostcore/mostcore.h
@@ -56,7 +56,7 @@ enum most_channel_direction {
enum most_channel_data_type {
MOST_CH_CONTROL = 1 << 0,
MOST_CH_ASYNC = 1 << 1,
- MOST_CH_ISOC_AVP = 1 << 2,
+ MOST_CH_ISOC = 1 << 2,
MOST_CH_SYNC = 1 << 5,
};