Skip to content

Commit

Permalink
Uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBalt committed Sep 27, 2024
1 parent 3e948ae commit de687cb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions source/portable/NetworkInterface/Zynq/NetworkInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ static BaseType_t xZynqNetworkInterfaceInitialise( NetworkInterface_t * pxInterf
{
/* set the solicited-node multicast address */
for( NetworkEndPoint_t * pxEndPointIter = FreeRTOS_FirstEndPoint( pxInterface );
pxEndPointIter != NULL;
pxEndPointIter = FreeRTOS_NextEndPoint( pxInterface, pxEndPointIter ) )
pxEndPointIter != NULL;
pxEndPointIter = FreeRTOS_NextEndPoint( pxInterface, pxEndPointIter ) )
{
if( pxEndPointIter->bits.bIPv6 != pdFALSE_UNSIGNED )
{
Expand All @@ -302,6 +302,7 @@ static BaseType_t xZynqNetworkInterfaceInitialise( NetworkInterface_t * pxInterf
#endif /* if ( ipconfigUSE_IPv6 == 0 ) */

pxEndPoint = FreeRTOS_NextEndPoint( pxInterface, pxEndPoint );

if( pxEndPoint != NULL )
{
/* If there is a second end-point, store the MAC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ static BaseType_t xUltrascaleNetworkInterfaceInitialise( NetworkInterface_t * px
{
/* set the solicited-node multicast address */
for( NetworkEndPoint_t * pxEndPointIter = FreeRTOS_FirstEndPoint( pxInterface );
pxEndPointIter != NULL;
pxEndPointIter = FreeRTOS_NextEndPoint( pxInterface, pxEndPointIter ) )
pxEndPointIter != NULL;
pxEndPointIter = FreeRTOS_NextEndPoint( pxInterface, pxEndPointIter ) )
{
if( pxEndPointIter->bits.bIPv6 != pdFALSE_UNSIGNED )
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
void vInitialiseOnIndex( BaseType_t xIndex );

#ifdef __cplusplus
} /* extern "C" */
} /* extern "C" */
#endif

#endif /* __NETIF_XAXIEMACIF_H__ */
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@


#ifdef __cplusplus
} /* extern "C" */
} /* extern "C" */
#endif

#endif /* ifndef __XEMACPSIF_HW_H_ */
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
};

#ifdef __cplusplus
} /* extern "C" */
} /* extern "C" */
#endif

#endif /* __XTOPOLOGY_H_ */

0 comments on commit de687cb

Please sign in to comment.