Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1430cc92 authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman
Browse files

greybus: connection: remove unused invalid state



Remove the unused legacy INVALID connection state.

Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 00ad6975
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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;