X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Falgorithm.c;h=9fc9386048fc3bc6430ebe9553bdbd6217775703;hp=a3672b201bb35d9f09fbbb89e229162415d06e3b;hb=c734202dc89bb3ee05a204140b3c890451e79686;hpb=56504fdd7353732525e34f1e3fbd44346588f979 diff --git a/src/target/algorithm.c b/src/target/algorithm.c index a3672b201b..9fc9386048 100644 --- a/src/target/algorithm.c +++ b/src/target/algorithm.c @@ -13,20 +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 "replacements.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; @@ -34,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;