From 82e708b4c4e9688daae876ce673bdcc2ba98358a Mon Sep 17 00:00:00 2001 From: Zapta Date: Wed, 9 Jul 2025 14:30:57 -0700 Subject: [PATCH] [icepll] Fixing the lint error reported in https://github.com/YosysHQ/icestorm/issues/352 by generating also the list of the unused PLL signals. --- icepll/icepll.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/icepll/icepll.cc b/icepll/icepll.cc index 8c0aaaae2d..0c9591aea3 100644 --- a/icepll/icepll.cc +++ b/icepll/icepll.cc @@ -413,7 +413,15 @@ int main(int argc, char **argv) "\t\t.RESETB(1'b1),\n" "\t\t.BYPASS(1'b0),\n" "\t\t.%s(clock_in),\n" - "\t\t.PLLOUTCORE(clock_out)\n" + "\t\t.PLLOUTCORE(clock_out),\n\n" + "\t\t/* Unused */\n" + "\t\t.PLLOUTGLOBAL(),\n" + "\t\t.EXTFEEDBACK(),\n" + "\t\t.LATCHINPUTVALUE(),\n" + "\t\t.SDO(),\n" + "\t\t.SDI(),\n" + "\t\t.SCLK(),\n" + "\t\t.DYNAMICDELAY()\n" "\t\t);\n\n", (pad ? "PACKAGEPIN":"REFERENCECLK") );