From 2ded1b60e6fce2f613fe878fa55cce719a538467 Mon Sep 17 00:00:00 2001 From: oharboe Date: Fri, 7 Nov 2008 09:36:55 +0000 Subject: [PATCH 1/1] ocd_flash_banks now returns empty list when no flash banks are configured instead of failing. Allows more orthogonal implementations of tcl code. git-svn-id: svn://svn.berlios.de/openocd/trunk@1147 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/flash/flash.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/flash/flash.c b/src/flash/flash.c index d5a9210ca7..64269c2df3 100644 --- a/src/flash/flash.c +++ b/src/flash/flash.c @@ -157,11 +157,6 @@ static int jim_flash_banks(Jim_Interp *interp, int argc, Jim_Obj *const *argv) return JIM_ERR; } - if (!flash_banks) - { - return JIM_ERR; - } - Jim_Obj *list=Jim_NewListObj(interp, NULL, 0); for (p = flash_banks; p; p = p->next) { -- 2.30.2