aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-11-21 16:30:51 +0000
committerGitHub <noreply@github.com>2018-11-21 16:30:51 +0000
commit01377d3f8717884735113537c5502db689c88bfa (patch)
tree561455411eaeba5643c857e8cdd2a9a10b9e5707 /ice40
parentcf83d546f1139fdfdafa5a309f0378ccff82fac4 (diff)
parent9c5f4fb885bb0d7d99a80ffd506e93e3e85320ae (diff)
downloadnextpnr-01377d3f8717884735113537c5502db689c88bfa.tar.gz
nextpnr-01377d3f8717884735113537c5502db689c88bfa.tar.bz2
nextpnr-01377d3f8717884735113537c5502db689c88bfa.zip
Merge pull request #135 from smunaut/ice40_typo
ice40/pll: Fix typo when testing for global port output net
Diffstat (limited to 'ice40')
-rw-r--r--ice40/pack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/pack.cc b/ice40/pack.cc
index dae19b2d..34d671cf 100644
--- a/ice40/pack.cc
+++ b/ice40/pack.cc
@@ -874,7 +874,7 @@ static void pack_special(Context *ctx)
newname = "PLLOUT_A";
if (pi.name == ctx->id("PLLOUTCOREB"))
newname = "PLLOUT_B";
- if (pi.name == ctx->id("PLLOUTGLOBALA") || pi.name == ctx->id("PLLOUTGLOBALA"))
+ if (pi.name == ctx->id("PLLOUTGLOBALA") || pi.name == ctx->id("PLLOUTGLOBAL"))
newname = "PLLOUT_A_GLOBAL";
if (pi.name == ctx->id("PLLOUTGLOBALB"))
newname = "PLLOUT_B_GLOBAL";