@@ -742,18 +742,18 @@ static BaseType_t prvGMACInit( NetworkInterface_t * pxInterface )
742
742
}
743
743
#endif /* ipconfigUSE_MDNS */
744
744
745
- // Register the Link-Local All-Nodes address
746
- // FF02::1 --> 33-33-00-00-00-01
745
+ /* Register the Link-Local All-Nodes address */
746
+ /* FF02::1 --> 33-33-00-00-00-01 */
747
747
uint8_t pcLOCAL_ALL_NODES_MULTICAST_MAC [ ipMAC_ADDRESS_LENGTH_BYTES ] = { 0x33 , 0x33 , 0x00 , 0x00 , 0x00 , 0x01 };
748
- prvAddMulticastMACAddress (pcLOCAL_ALL_NODES_MULTICAST_MAC );
748
+ prvAddMulticastMACAddress ( pcLOCAL_ALL_NODES_MULTICAST_MAC );
749
749
750
750
for ( pxEndPoint = FreeRTOS_FirstEndPoint ( pxMyInterface );
751
751
pxEndPoint != NULL ;
752
752
pxEndPoint = FreeRTOS_NextEndPoint ( pxMyInterface , pxEndPoint ) )
753
753
{
754
754
if ( pxEndPoint -> bits .bIPv6 != pdFALSE_UNSIGNED )
755
755
{
756
- // Since this is an IPv6 end point, add the solicited-node MAC address.
756
+ /* Since this is an IPv6 end point, add the solicited-node MAC address. */
757
757
uint8_t ucMACAddress [ 6 ] = { 0x33 , 0x33 , 0xff , 0 , 0 , 0 };
758
758
759
759
ucMACAddress [ 3 ] = pxEndPoint -> ipv6_settings .xIPAddress .ucBytes [ 13 ];
@@ -800,9 +800,9 @@ static BaseType_t prvGMACInit( NetworkInterface_t * pxInterface )
800
800
}
801
801
/*-----------------------------------------------------------*/
802
802
803
- #define GMAC_ADDRESS_HASH_BITS ( 64U )
804
- #define GMAC_ADDRESS_HASH_MASK ( GMAC_ADDRESS_HASH_BITS - 1 )
805
- #define GMAC_ADDRESS_HASH_COUNTERS_MAX_VALUE ( 255U )
803
+ #define GMAC_ADDRESS_HASH_BITS ( 64U )
804
+ #define GMAC_ADDRESS_HASH_MASK ( GMAC_ADDRESS_HASH_BITS - 1 )
805
+ #define GMAC_ADDRESS_HASH_COUNTERS_MAX_VALUE ( 255U )
806
806
static uint8_t prvAddressHashCounters [ GMAC_ADDRESS_HASH_BITS ] = { 0 };
807
807
static uint64_t prvAddressHashBitMask = ( 0 );
808
808
@@ -1159,9 +1159,9 @@ static uint32_t prvEMACRxPoll( void )
1159
1159
/*-----------------------------------------------------------*/
1160
1160
1161
1161
volatile UBaseType_t uxLastMinBufferCount = 0 ;
1162
- #if ( ipconfigCHECK_IP_QUEUE_SPACE != 0 )
1162
+ #if ( ipconfigCHECK_IP_QUEUE_SPACE != 0 )
1163
1163
volatile UBaseType_t uxLastMinQueueSpace ;
1164
- #endif
1164
+ #endif
1165
1165
volatile UBaseType_t uxCurrentSemCount ;
1166
1166
volatile UBaseType_t uxLowestSemCount ;
1167
1167
0 commit comments