From: oharboe Date: Fri, 7 Nov 2008 09:36:55 +0000 (+0000) Subject: ocd_flash_banks now returns empty list when no flash banks are configured instead... X-Git-Tag: v0.1.0~171 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=2ded1b60e6fce2f613fe878fa55cce719a538467;hp=26095d6612d60b470298e7136e7ffd6c74c9f371 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 --- 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) {