Why is this an issue?

Instance ports with no default value should not be left unconnected.

How to fix it

Code examples

Noncompliant code example

module fly(input int i);
endmodule

module top;
  fly fly1();
endmodule

Compliant solution

module fly(input int i = 1);
endmodule

module top;
  fly fly1();
endmodule