Commit d96478d5 authored by David S. Miller's avatar David S. Miller

sparc64: Kill unnecessary static on local var in ftrace_call_replace().

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ddacd0bc
...@@ -13,7 +13,7 @@ static const u32 ftrace_nop = 0x01000000; ...@@ -13,7 +13,7 @@ static const u32 ftrace_nop = 0x01000000;
static u32 ftrace_call_replace(unsigned long ip, unsigned long addr) static u32 ftrace_call_replace(unsigned long ip, unsigned long addr)
{ {
static u32 call; u32 call;
s32 off; s32 off;
off = ((s32)addr - (s32)ip); off = ((s32)addr - (s32)ip);
......
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