Skip to content

Commit

Permalink
WIP: new_usb added (empty shell): removed stray signal
Browse files Browse the repository at this point in the history
  • Loading branch information
fhaus1 committed Oct 30, 2024
1 parent 6f1beac commit 37d1254
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions hw/newusb/new_usb_ohci.sv
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,13 @@ newusb_reg_top #(
.devmode_i ( 1'b1 )
);

assign dma_req_o = '0;
// IRQ tied-off
assign intr_o = '0;
assign dma_req_o = '0;
// IRQ tied-off
assign intr_o = '0;

assign phy_dm_o = '0;
assign phy_dm_oe_o = '0;
assign phy_dp_o = '0;
assign phy_dp_oe_o = '0;

assign intr.intn.new_usb = 0;
assign phy_dm_o = '0;
assign phy_dm_oe_o = '0;
assign phy_dp_o = '0;
assign phy_dp_oe_o = '0;

Check warning on line 95 in hw/newusb/new_usb_ohci.sv

View workflow job for this annotation

GitHub Actions / verible-verilog-lint

[verible-verilog-lint] hw/newusb/new_usb_ohci.sv#L95

Remove trailing spaces. [Style: trailing-spaces] [no-trailing-spaces]
Raw output
message:"Remove trailing spaces. [Style: trailing-spaces] [no-trailing-spaces]"  location:{path:"hw/newusb/new_usb_ohci.sv"  range:{start:{line:95  column:1}}}  severity:WARNING  source:{name:"verible-verilog-lint"  url:"https://github.com/chipsalliance/verible"}  suggestions:{range:{start:{line:95  column:1}  end:{line:96}}  text:"\n"}
endmodule

0 comments on commit 37d1254

Please sign in to comment.