X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Falgorithm.c;h=9fc9386048fc3bc6430ebe9553bdbd6217775703;hp=6d213e0c5d10236a95f17bc166b9876af8611dcd;hb=d0e763ac7ef6aa17b17bd00ccdfbccfb4eacda69;hpb=6c965a3da9cd6f5b2cf1b177d38723356c83d923 diff --git a/src/target/algorithm.c b/src/target/algorithm.c index 6d213e0c5d..9fc9386048 100644 --- a/src/target/algorithm.c +++ b/src/target/algorithm.c @@ -13,17 +13,15 @@ * 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 "binarybuffer.h" - +#include void init_mem_param(struct mem_param *param, uint32_t address, uint32_t size, enum param_direction direction) { @@ -39,15 +37,15 @@ void destroy_mem_param(struct mem_param *param) param->value = NULL; } -void init_reg_param(reg_param_t *param, char *reg_name, uint32_t 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;