net: ieee802154: Enhance/fix the names of the MLME return codes
authorMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 7 Apr 2022 10:08:54 +0000 (12:08 +0200)
committerStefan Schmidt <stefan@datenfreihafen.org>
Mon, 25 Apr 2022 18:51:12 +0000 (20:51 +0200)
Let's keep these definitions as close to the specification as possible
while they are not yet in use. The names get slightly longer, but we
gain the minor cost of being able to search the spec more easily.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Alexander Aring <aahringo@redhat.com>
Link: https://lore.kernel.org/r/20220407100903.1695973-2-miquel.raynal@bootlin.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
include/linux/ieee802154.h

index 95c831162212ec609b4b2172469723e5c4d4d299..01d945c8b2e141de939f2b6618aa6dbc813f2b6c 100644 (file)
@@ -136,16 +136,16 @@ enum {
        IEEE802154_SUCCESS = 0x0,
 
        /* The beacon was lost following a synchronization request. */
-       IEEE802154_BEACON_LOSS = 0xe0,
+       IEEE802154_BEACON_LOST = 0xe0,
        /*
         * A transmission could not take place due to activity on the
         * channel, i.e., the CSMA-CA mechanism has failed.
         */
-       IEEE802154_CHNL_ACCESS_FAIL = 0xe1,
+       IEEE802154_CHANNEL_ACCESS_FAILURE = 0xe1,
        /* The GTS request has been denied by the PAN coordinator. */
-       IEEE802154_DENINED = 0xe2,
+       IEEE802154_DENIED = 0xe2,
        /* The attempt to disable the transceiver has failed. */
-       IEEE802154_DISABLE_TRX_FAIL = 0xe3,
+       IEEE802154_DISABLE_TRX_FAILURE = 0xe3,
        /*
         * The received frame induces a failed security check according to
         * the security suite.
@@ -185,9 +185,9 @@ enum {
         * A PAN identifier conflict has been detected and communicated to the
         * PAN coordinator.
         */
-       IEEE802154_PANID_CONFLICT = 0xee,
+       IEEE802154_PAN_ID_CONFLICT = 0xee,
        /* A coordinator realignment command has been received. */
-       IEEE802154_REALIGMENT = 0xef,
+       IEEE802154_REALIGNMENT = 0xef,
        /* The transaction has expired and its information discarded. */
        IEEE802154_TRANSACTION_EXPIRED = 0xf0,
        /* There is no capacity to store the transaction. */
@@ -203,7 +203,7 @@ enum {
         * A SET/GET request was issued with the identifier of a PIB attribute
         * that is not supported.
         */
-       IEEE802154_UNSUPPORTED_ATTR = 0xf4,
+       IEEE802154_UNSUPPORTED_ATTRIBUTE = 0xf4,
        /*
         * A request to perform a scan operation failed because the MLME was
         * in the process of performing a previously initiated scan operation.