This patch change all set commands for mac interface settings to NL802154_CMD_SET_INTERFACE which is the new command. The decision which setting should be set is now determined which attribute is set. Signed-off-by: Alexander Aring <alex.aring@xxxxxxxxx> --- src/mac.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mac.c b/src/mac.c index 703d09f..9dd8456 100644 --- a/src/mac.c +++ b/src/mac.c @@ -38,7 +38,7 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, pan_id, "<pan_id>", - NL802154_CMD_SET_PAN_ID, 0, CIB_NETDEV, handle_pan_id_set, NULL); + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_pan_id_set, NULL); static int handle_short_addr_set(struct nl802154_state *state, struct nl_cb *cb, @@ -65,7 +65,7 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, short_addr, "<short_addr>", - NL802154_CMD_SET_SHORT_ADDR, 0, CIB_NETDEV, handle_short_addr_set, NULL); + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_short_addr_set, NULL); static int handle_max_frame_retries_set(struct nl802154_state *state, struct nl_cb *cb, @@ -92,7 +92,7 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, max_frame_retries, "<retries>", - NL802154_CMD_SET_MAX_FRAME_RETRIES, 0, CIB_NETDEV, + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_max_frame_retries_set, NULL); static int handle_backoff_exponent(struct nl802154_state *state, @@ -127,7 +127,7 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, backoff_exponents, "<min_be> <max_be>", - NL802154_CMD_SET_BACKOFF_EXPONENT, 0, CIB_NETDEV, + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_backoff_exponent, NULL); static int handle_max_csma_backoffs(struct nl802154_state *state, @@ -155,7 +155,7 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, max_csma_backoffs, "<backoffs>", - NL802154_CMD_SET_MAX_CSMA_BACKOFFS, 0, CIB_NETDEV, + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_max_csma_backoffs, NULL); @@ -184,4 +184,4 @@ nla_put_failure: return -ENOBUFS; } COMMAND(set, lbt, "<1|0>", - NL802154_CMD_SET_LBT_MODE, 0, CIB_NETDEV, handle_lbt_mode, NULL); + NL802154_CMD_SET_INTERFACE, 0, CIB_NETDEV, handle_lbt_mode, NULL); -- 2.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html