Skip to content

Commit d088c0d

Browse files
committed
whitespace removal
1 parent 390ce1a commit d088c0d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

axi/axi4/rtl/AxiRateGen.vhd

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ entity AxiRateGen is
2626
generic (
2727
TPD_G : time := 1 ns;
2828
COMMON_CLK_G : boolean := false;
29-
AXI_CONFIG_G : AxiConfigType);
29+
AXI_CONFIG_G : AxiConfigType);
3030
port (
3131
-- AXI4 Memory Interface
3232
axiClk : in sl;

ethernet/RoCEv2/blue-lib/BypassWire.v

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
module BypassWire(WGET, WVAL);
33

4-
4+
55
parameter width = 1;
6-
6+
77
input [width - 1 : 0] WVAL;
88

99
output [width - 1 : 0] WGET;

ethernet/RoCEv2/blue-lib/CRegN5.v

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ module CRegN5
7575
wire [width - 1 : 0] Q_OUT_3 ;
7676
wire [width - 1 : 0] Q_OUT_4 ;
7777
wire [width - 1 : 0] Q_OUT_5 ;
78-
78+
7979
assign Q_OUT_1 = EN_0 ? D_IN_0 : Q_OUT_0 ;
8080
assign Q_OUT_2 = EN_1 ? D_IN_1 : Q_OUT_1 ;
8181
assign Q_OUT_3 = EN_2 ? D_IN_2 : Q_OUT_2 ;
8282
assign Q_OUT_4 = EN_3 ? D_IN_3 : Q_OUT_3 ;
8383
assign Q_OUT_5 = EN_4 ? D_IN_4 : Q_OUT_4 ;
84-
84+
8585
always@(posedge CLK)
8686
begin
8787
if (RST == `BSV_RESET_VALUE)

ethernet/RoCEv2/blue-lib/CRegUN5.v

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ module CRegUN5
6767
wire [width - 1 : 0] Q_OUT_3 ;
6868
wire [width - 1 : 0] Q_OUT_4 ;
6969
wire [width - 1 : 0] Q_OUT_5 ;
70-
70+
7171
assign Q_OUT_1 = EN_0 ? D_IN_0 : Q_OUT_0 ;
7272
assign Q_OUT_2 = EN_1 ? D_IN_1 : Q_OUT_1 ;
7373
assign Q_OUT_3 = EN_2 ? D_IN_2 : Q_OUT_2 ;
7474
assign Q_OUT_4 = EN_3 ? D_IN_3 : Q_OUT_3 ;
7575
assign Q_OUT_5 = EN_4 ? D_IN_4 : Q_OUT_4 ;
76-
76+
7777
always@(posedge CLK)
7878
begin
7979
Q_OUT_0 <= `BSV_ASSIGNMENT_DELAY Q_OUT_5 ;

ethernet/RoCEv2/blue-lib/RegUN.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module RegUN(CLK, EN, D_IN, Q_OUT);
2525
// synopsys translate_on
2626
`endif // BSV_NO_INITIAL_BLOCKS
2727

28-
28+
2929
always@(posedge CLK)
3030
begin
3131
if (EN)

0 commit comments

Comments
 (0)