coding style: add arguments to function prototypes
Issue identified by checkpatch script from Linux kernel v5.1 using
the command
find src/ -type f -exec ./tools/scripts/checkpatch.pl \
-q --types FUNCTION_ARGUMENTS -f {} \;
This patch also fixes an incorrect function prototype in zy1000.c.
ZY1000 minidriver implementation overrides the function
arm11_run_instr_data_to_core_noack_inner(), but the prototype is
not the same as in src/target/arm11_dbgtap.c and to avoid compile
error it was changed also the prototype of the called function
arm11_run_instr_data_to_core_noack_inner_default().
Change-Id: I476cda8cdb0e1e280795b3b43ca95c40d09e4a3d
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5630
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
This commit is contained in:
@@ -31,13 +31,13 @@ struct armv8_common;
|
||||
int armv8_dpm_setup(struct arm_dpm *dpm);
|
||||
int armv8_dpm_initialize(struct arm_dpm *dpm);
|
||||
|
||||
int armv8_dpm_read_current_registers(struct arm_dpm *);
|
||||
int armv8_dpm_read_current_registers(struct arm_dpm *dpm);
|
||||
int armv8_dpm_modeswitch(struct arm_dpm *dpm, enum arm_mode mode);
|
||||
|
||||
|
||||
int armv8_dpm_write_dirty_registers(struct arm_dpm *, bool bpwp);
|
||||
int armv8_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp);
|
||||
|
||||
void armv8_dpm_report_wfar(struct arm_dpm *, uint64_t wfar);
|
||||
void armv8_dpm_report_wfar(struct arm_dpm *dpm, uint64_t wfar);
|
||||
|
||||
/* DSCR bits; see ARMv7a arch spec section C10.3.1.
|
||||
* Not all v7 bits are valid in v6.
|
||||
|
||||
Reference in New Issue
Block a user