target: constify structures

Change-Id: I875cfab8dec4ade72ed9c9cd7d52baaca182a1ef
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/2295
Tested-by: jenkins
This commit is contained in:
Spencer Oliver
2014-09-11 22:14:31 +01:00
parent b675edcc95
commit 3160c66408
16 changed files with 27 additions and 27 deletions

View File

@@ -29,12 +29,12 @@
#include <helper/log.h>
#include "breakpoints.h"
static char *breakpoint_type_strings[] = {
static const char * const breakpoint_type_strings[] = {
"hardware",
"software"
};
static char *watchpoint_rw_strings[] = {
static const char * const watchpoint_rw_strings[] = {
"read",
"write",
"access"
@@ -50,7 +50,7 @@ int breakpoint_add_internal(struct target *target,
{
struct breakpoint *breakpoint = target->breakpoints;
struct breakpoint **breakpoint_p = &target->breakpoints;
char *reason;
const char *reason;
int retval;
int n;
@@ -396,7 +396,7 @@ int watchpoint_add(struct target *target, uint32_t address, uint32_t length,
struct watchpoint *watchpoint = target->watchpoints;
struct watchpoint **watchpoint_p = &target->watchpoints;
int retval;
char *reason;
const char *reason;
while (watchpoint) {
if (watchpoint->address == address) {