Commit e93ad65e authored by Balamuruhan S's avatar Balamuruhan S Committed by Michael Ellerman

powerpc/test_emulate_step: Move extern declaration to sstep.h

fix checkpatch.pl warnings by moving extern declaration from source
file to headerfile.
Signed-off-by: default avatarBalamuruhan S <bala24@linux.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200626095158.1031507-5-bala24@linux.ibm.com
parent 68a180a4
...@@ -108,6 +108,8 @@ enum instruction_type { ...@@ -108,6 +108,8 @@ enum instruction_type {
#define GET_PREFIX_RA(i) (((i) >> 16) & 0x1f) #define GET_PREFIX_RA(i) (((i) >> 16) & 0x1f)
#define GET_PREFIX_R(i) ((i) & (1ul << 20)) #define GET_PREFIX_R(i) ((i) & (1ul << 20))
extern s32 patch__exec_instr;
struct instruction_op { struct instruction_op {
int type; int type;
int reg; int reg;
......
...@@ -1150,7 +1150,6 @@ static int __init emulate_compute_instr(struct pt_regs *regs, ...@@ -1150,7 +1150,6 @@ static int __init emulate_compute_instr(struct pt_regs *regs,
bool negative) bool negative)
{ {
int analysed; int analysed;
extern s32 patch__exec_instr;
struct instruction_op op; struct instruction_op op;
if (!regs || !ppc_inst_val(instr)) if (!regs || !ppc_inst_val(instr))
...@@ -1176,7 +1175,6 @@ static int __init execute_compute_instr(struct pt_regs *regs, ...@@ -1176,7 +1175,6 @@ static int __init execute_compute_instr(struct pt_regs *regs,
struct ppc_inst instr) struct ppc_inst instr)
{ {
extern int exec_instr(struct pt_regs *regs); extern int exec_instr(struct pt_regs *regs);
extern s32 patch__exec_instr;
if (!regs || !ppc_inst_val(instr)) if (!regs || !ppc_inst_val(instr))
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment