Skip to content

Commit

Permalink
Remove weak keyword from ot uart function implemented for matter on e…
Browse files Browse the repository at this point in the history
…fr32 (#12565)
  • Loading branch information
jmartinez-silabs authored Dec 6, 2021
1 parent bfdbd45 commit d8e38d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/platform/EFR32/ThreadStackManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ extern "C" void otPlatFree(void * aPtr)
#include "uart.h"
#endif

extern "C" __WEAK otError otPlatUartEnable(void)
extern "C" otError otPlatUartEnable(void)
{
#ifdef PW_RPC_ENABLED
return OT_ERROR_NOT_IMPLEMENTED;
Expand All @@ -126,7 +126,7 @@ extern "C" __WEAK otError otPlatUartEnable(void)
#endif
}

extern "C" __WEAK otError otPlatUartSend(const uint8_t * aBuf, uint16_t aBufLength)
extern "C" otError otPlatUartSend(const uint8_t * aBuf, uint16_t aBufLength)
{
#ifdef PW_RPC_ENABLED
return OT_ERROR_NOT_IMPLEMENTED;
Expand All @@ -140,7 +140,7 @@ extern "C" __WEAK otError otPlatUartSend(const uint8_t * aBuf, uint16_t aBufLeng
#endif
}

extern "C" __WEAK void efr32UartProcess(void)
extern "C" void efr32UartProcess(void)
{
#if !defined(PW_RPC_ENABLED) && !defined(ENABLE_CHIP_SHELL)
uint8_t tempBuf[128] = { 0 };
Expand Down

0 comments on commit d8e38d7

Please sign in to comment.