]> jspc29.x-matter.uni-frankfurt.de Git - trbnet.git/commitdiff
typos
authorMichael Boehmer <mboehmer@ph.tum.de>
Mon, 11 Jul 2022 10:05:45 +0000 (12:05 +0200)
committerMichael Boehmer <mboehmer@ph.tum.de>
Mon, 11 Jul 2022 10:05:45 +0000 (12:05 +0200)
gbe_trb/base/trb_net16_gbe_frame_receiver.vhd

index 030767dd63c1f14142fdfcf04b0f936b64301ca1..0fc01b847b2dedab0761762332838d690cdf2cb2 100644 (file)
@@ -635,7 +635,7 @@ begin
     if   ( (RESET = '1') or (delayed_frame_valid_q = '1') ) then
       rx_bytes_ctr <= x"0001";
     elsif( fifo_wr_en = '1' ) then
-      rx_bytes_ctr <= rx_bytes_ctr + x"1";
+      rx_bytes_ctr <= rx_bytes_ctr + 1;
     end if;
   end if;
 end process THE_RX_BYTES_CTR_PROC;
@@ -646,7 +646,7 @@ begin
     if   ( RESET = '1' ) then
       error_frames_ctr <= (others => '0');
     elsif( MAC_RX_ER_IN = '1' ) then
-      error_frames_ctr <= error_frames_ctr + x"1";
+      error_frames_ctr <= error_frames_ctr + 1;
     end if;
   end if;
 end process THE_ERROR_FRAMES_CTR_PROC;
@@ -660,7 +660,7 @@ begin
     if   ( RESET = '1' ) then
       dbg_rec_frames <= (others => '0');
     elsif( MAC_RX_EOF_IN = '1' ) then
-      dbg_rec_frames <= dbg_rec_frames + x"1";
+      dbg_rec_frames <= dbg_rec_frames + 1;
     end if;
   end if;
 end process THE_RECEIVED_FRAMES_CTR;
@@ -671,7 +671,7 @@ begin
     if   ( RESET = '1' ) then
       dbg_drp_frames <= (others => '0');
     elsif( (filter_current_state = DECIDE) and (frame_type_valid = '0') ) then
-      dbg_drp_frames <= dbg_drp_frames + x"1";
+      dbg_drp_frames <= dbg_drp_frames + 1;
     end if;
   end if;
 end process THE_DROPPED_FRAMES_CTR;
@@ -688,7 +688,7 @@ begin
       mon_rec_bytes <= (others => '0');
     elsif( fifo_wr_en = '1' ) then
       mon_rec_bytes <= mon_rec_bytes + x"1";
-  else
+    else
       mon_rec_bytes <= mon_rec_bytes;          
     end if;
   end if;