From 2478c1874591693ccff4c689e39238687bc2bc93 Mon Sep 17 00:00:00 2001 From: Jan Egil Ruud Date: Mon, 11 Jul 2022 15:26:41 +0200 Subject: [PATCH] Do not let the hvupdi extended option take any configuration values. The hvupdi type is implied by the part configuration. --- src/jtag3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jtag3.c b/src/jtag3.c index ae5d1912..f07e0319 100644 --- a/src/jtag3.c +++ b/src/jtag3.c @@ -1495,7 +1495,7 @@ static int jtag3_parseextparms(PROGRAMMER * pgm, LISTID extparms) continue; } - else if (matches(extended_param, "hvupdi")) { + else if (strcmp(extended_param, "hvupdi") == 0) { PDATA(pgm)->use_hvupdi = true; continue; }