From: Antonio Borneo Date: Sun, 25 Apr 2021 18:07:35 +0000 (+0200) Subject: helper/jim-nvp: remove unused function Jim_nvpInit() X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f18a801e03e50274676544d10029c05e1f219246;p=fw%2Fopenocd helper/jim-nvp: remove unused function Jim_nvpInit() The files jim-nvp.[ch] were originally inside jimtcl, then in 2011 they were dropped by jimtcl and integrated in OpenOCD. The initial purpose was to make them as an independent library, thus the presence of an 'init' function. Being now part of OpenOCD do not require the 'init' function anymore, that is still empty and unused, plus its name is in violation of the coding style. Drop the function Jim_nvpInit(). Change-Id: I429e10444c86a26dbdc22aa071315324dc5edc3e Signed-off-by: Antonio Borneo Reviewed-on: http://openocd.zylin.com/6187 Tested-by: jenkins Reviewed-by: Tomas Vanek --- diff --git a/src/helper/jim-nvp.c b/src/helper/jim-nvp.c index d13bdfba4..2caf18bce 100644 --- a/src/helper/jim-nvp.c +++ b/src/helper/jim-nvp.c @@ -333,9 +333,3 @@ const char *Jim_Debug_ArgvString(Jim_Interp *interp, int argc, Jim_Obj *const *a return Jim_String(debug_string_obj); } - -int Jim_nvpInit(Jim_Interp *interp) -{ - /* This is really a helper library, not an extension, but this is the easy way */ - return JIM_OK; -}