From f55cf43ddf23ac81da372a41b2010f4bc68f69e6 Mon Sep 17 00:00:00 2001 From: Florian Grandel Date: Fri, 6 Sep 2024 11:52:05 +0200 Subject: [PATCH] drivers: ieee802154: ieee802154_uart_pipe: replace magic number Replaces a magic number by the appropriate definition. Signed-off-by: Florian Grandel --- drivers/ieee802154/ieee802154_uart_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ieee802154/ieee802154_uart_pipe.c b/drivers/ieee802154/ieee802154_uart_pipe.c index 5a5333cab78..3e006adacd1 100644 --- a/drivers/ieee802154/ieee802154_uart_pipe.c +++ b/drivers/ieee802154/ieee802154_uart_pipe.c @@ -401,4 +401,4 @@ static const struct ieee802154_radio_api upipe_radio_api = { NET_DEVICE_DT_INST_DEFINE(0, upipe_init, NULL, &upipe_context_data, NULL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &upipe_radio_api, IEEE802154_L2, NET_L2_GET_CTX_TYPE(IEEE802154_L2), - 125); + IEEE802154_MTU);