X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Falgorithm.c;h=9fc9386048fc3bc6430ebe9553bdbd6217775703;hp=c4450ac12cb7a1774bd5678ef74cd3e2e17cdbf3;hb=8f518d3592dd80bfc7637d16498f2994038ab77c;hpb=02f3765351c9e25185b745b84f1a2604fb2149c7 diff --git a/src/target/algorithm.c b/src/target/algorithm.c index c4450ac12c..9fc9386048 100644 --- a/src/target/algorithm.c +++ b/src/target/algorithm.c @@ -13,24 +13,17 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ + #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "algorithm.h" +#include -#include "log.h" -#include "configuration.h" -#include "binarybuffer.h" - -#include - - -void init_mem_param(mem_param_t *param, u32 address, u32 size, enum param_direction direction) +void init_mem_param(struct mem_param *param, uint32_t address, uint32_t size, enum param_direction direction) { param->address = address; param->size = size; @@ -38,21 +31,21 @@ void init_mem_param(mem_param_t *param, u32 address, u32 size, enum param_direct param->direction = direction; } -void destroy_mem_param(mem_param_t *param) +void destroy_mem_param(struct mem_param *param) { free(param->value); param->value = NULL; } -void init_reg_param(reg_param_t *param, char *reg_name, u32 size, enum param_direction direction) +void init_reg_param(struct reg_param *param, char *reg_name, uint32_t size, enum param_direction direction) { param->reg_name = reg_name; param->size = size; - param->value = malloc(CEIL(size, 8)); + param->value = malloc(DIV_ROUND_UP(size, 8)); param->direction = direction; } -void destroy_reg_param(reg_param_t *param) +void destroy_reg_param(struct reg_param *param) { free(param->value); param->value = NULL;