aboutsummaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2019-05-06 18:32:02 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2020-05-09 14:41:31 +0100
commit59cc1f6629a8d8008cd5af69792e63adecd56b7c (patch)
tree0ea0ed70ebaee4ebfa6307d7d50419066797e118 /src/target
parente41c3f78d13b9450c5c96d7188d8ec775df8f4ad (diff)
downloadriscv-openocd-59cc1f6629a8d8008cd5af69792e63adecd56b7c.zip
riscv-openocd-59cc1f6629a8d8008cd5af69792e63adecd56b7c.tar.gz
riscv-openocd-59cc1f6629a8d8008cd5af69792e63adecd56b7c.tar.bz2
coding style: open function's brace at beginning of new line
Issue identified by checkpatch script from Linux kernel v5.1 using the command find src/ -type f -exec ./tools/scripts/checkpatch.pl \ -q --types OPEN_BRACE -f {} \; Change-Id: I6d1356ed11e2699525f384efb7556bc2efdc299f Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5628 Tested-by: jenkins Reviewed-by: Marc Schink <dev@zapb.de>
Diffstat (limited to 'src/target')
-rw-r--r--src/target/openrisc/or1k.c4
-rw-r--r--src/target/riscv/riscv.c28
2 files changed, 11 insertions, 21 deletions
diff --git a/src/target/openrisc/or1k.c b/src/target/openrisc/or1k.c
index 1e5db8c..44825d0 100644
--- a/src/target/openrisc/or1k.c
+++ b/src/target/openrisc/or1k.c
@@ -1207,8 +1207,8 @@ int or1k_get_gdb_fileio_info(struct target *target, struct gdb_fileio_info *file
}
static int or1k_checksum_memory(struct target *target, target_addr_t address,
- uint32_t count, uint32_t *checksum) {
-
+ uint32_t count, uint32_t *checksum)
+{
return ERROR_FAIL;
}
diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c
index b5fd22b..afd0cc8 100644
--- a/src/target/riscv/riscv.c
+++ b/src/target/riscv/riscv.c
@@ -772,12 +772,9 @@ static int oldriscv_step(struct target *target, int current, uint32_t address,
return tt->step(target, current, address, handle_breakpoints);
}
-static int old_or_new_riscv_step(
- struct target *target,
- int current,
- target_addr_t address,
- int handle_breakpoints
-){
+static int old_or_new_riscv_step(struct target *target, int current,
+ target_addr_t address, int handle_breakpoints)
+{
RISCV_INFO(r);
LOG_DEBUG("handle_breakpoints=%d", handle_breakpoints);
if (r->is_halted == NULL)
@@ -862,13 +859,9 @@ static int oldriscv_resume(struct target *target, int current, uint32_t address,
debug_execution);
}
-static int old_or_new_riscv_resume(
- struct target *target,
- int current,
- target_addr_t address,
- int handle_breakpoints,
- int debug_execution
-){
+static int old_or_new_riscv_resume(struct target *target, int current,
+ target_addr_t address, int handle_breakpoints, int debug_execution)
+{
LOG_DEBUG("handle_breakpoints=%d", handle_breakpoints);
if (target->smp) {
struct target_list *targets = target->head;
@@ -1413,12 +1406,9 @@ int riscv_openocd_resume(
return out;
}
-int riscv_openocd_step(
- struct target *target,
- int current,
- target_addr_t address,
- int handle_breakpoints
-) {
+int riscv_openocd_step(struct target *target, int current,
+ target_addr_t address, int handle_breakpoints)
+{
LOG_DEBUG("stepping rtos hart");
if (!current)