Skip to content

Commit

Permalink
Applied restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
silabs-srishylam committed Apr 14, 2023
1 parent 8da89da commit 4ad4d31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions examples/platform/silabs/SiWx917/device/src/startup_RS1xxxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ __attribute__((section(".co_stack"))) unsigned long pulStack[STACK_SIZE];
#define WEAK __attribute__((weak))

/*----------Declaration of the default fault handlers-------------------------*/
#ifndef __START
extern void _start(void) __attribute__((noreturn)); /* Pre Main (C library entry point) */
#else
extern int __START(void) __attribute__((noreturn)); /* main entry point */
#endif
#ifndef __START
extern void _start(void) __attribute__((noreturn)); /* Pre Main (C library entry point) */
#else
extern int __START(void) __attribute__((noreturn)); /* main entry point */
#endif

/* System exception vector handler */
__attribute__((used)) void WEAK Reset_Handler(void);
Expand Down
2 changes: 1 addition & 1 deletion src/platform/silabs/SiWx917/CHIPCryptoPALTinyCrypt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ CHIP_ERROR Spake2p_P256_SHA256_HKDF_HMAC::FELoad(const uint8_t * in, size_t in_l

CHIP_ERROR Spake2p_P256_SHA256_HKDF_HMAC::FEWrite(const void * fe, uint8_t * out, size_t out_len)
{
(void)out_len;
(void) out_len;
uECC_vli_nativeToBytes(out, NUM_ECC_BYTES, (const unsigned int *) fe);

return CHIP_NO_ERROR;
Expand Down

0 comments on commit 4ad4d31

Please sign in to comment.