The current enum is wrong. A device can either be an RFD, an RFD-RX, an RFD-TX or an FFD. If it is an FFD, it can also be a coordinator. While defining a node type might make sense from a strict software point of view, opposing node and coordinator seems meaningless in the ieee 802.15.4 world. As this enumeration is not used anywhere, let's just drop it. We will in a second time add a new "node type" enumeration which apply only to nodes, and does differentiates the type of devices mentioned above. Signed-off-by: Miquel Raynal <miquel.raynal@xxxxxxxxxxx> --- include/net/nl802154.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/net/nl802154.h b/include/net/nl802154.h index 145acb8f2509..0f508aaae126 100644 --- a/include/net/nl802154.h +++ b/include/net/nl802154.h @@ -156,7 +156,6 @@ enum nl802154_iftype { NL802154_IFTYPE_NODE = 0, NL802154_IFTYPE_MONITOR, - NL802154_IFTYPE_COORD, /* keep last */ NUM_NL802154_IFTYPES, -- 2.34.1