projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00ad697
)
greybus: connection: remove unused invalid state
author
Johan Hovold
<johan@hovoldconsulting.com>
Fri, 27 May 2016 15:26:32 +0000
(17:26 +0200)
committer
Greg Kroah-Hartman
<gregkh@google.com>
Fri, 27 May 2016 19:21:16 +0000
(12:21 -0700)
Remove the unused legacy INVALID connection state.
Signed-off-by: Johan Hovold <johan@hovoldconsulting.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/connection.h
patch
|
blob
|
history
diff --git
a/drivers/staging/greybus/connection.h
b/drivers/staging/greybus/connection.h
index 6120c088648a316e6535a2874b37a89c829948b6..9a35e6196b17833459ffaddb56d9095c4f09d426 100644
(file)
--- 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;