summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-05-27 17:26:32 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-27 12:21:16 -0700
commit1430cc920ab374a94f3a31574a2d616dd7f4c4d1 (patch)
tree7cebcb57def279662998dc8b161b17af7046c1ca /drivers/staging
parent00ad6975e7ca131a446c3c2e6510eec39664646d (diff)
greybus: connection: remove unused invalid state
Remove the unused legacy INVALID connection state. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/greybus/connection.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/greybus/connection.h b/drivers/staging/greybus/connection.h
index 6120c088648a..9a35e6196b17 100644
--- a/drivers/staging/greybus/connection.h
+++ b/drivers/staging/greybus/connection.h
@@ -20,10 +20,9 @@
#define GB_CONNECTION_FLAG_CONTROL BIT(4)
enum gb_connection_state {
- GB_CONNECTION_STATE_INVALID = 0,
- GB_CONNECTION_STATE_DISABLED = 1,
- GB_CONNECTION_STATE_ENABLED_TX = 2,
- GB_CONNECTION_STATE_ENABLED = 3,
+ GB_CONNECTION_STATE_DISABLED = 0,
+ GB_CONNECTION_STATE_ENABLED_TX = 1,
+ GB_CONNECTION_STATE_ENABLED = 2,
};
struct gb_operation;