Skip to content

Commit

Permalink
[WATCHDOG] make watchdog/hpwdt.c:asminline_call() static
Browse files Browse the repository at this point in the history
This patch makes the needlessly global asminline_call() static and 
removes the not required "asmlinkage".

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Thomas Mingarelli <Thomas.Mingarelli@hp.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Cc: Andrew Morton <akpm@linux-foundation.org>
  • Loading branch information
Adrian Bunk authored and Wim Van Sebroeck committed Mar 6, 2008
1 parent 996d62d commit 8b1266f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/watchdog/hpwdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ MODULE_DEVICE_TABLE(pci, hpwdt_devices);

#define HPWDT_ARCH 32

asmlinkage void asminline_call(struct cmn_registers *pi86Regs,
unsigned long *pRomEntry)
static void asminline_call(struct cmn_registers *pi86Regs,
unsigned long *pRomEntry)
{
asm("pushl %ebp \n\t"
"movl %esp, %ebp \n\t"
Expand Down Expand Up @@ -333,8 +333,8 @@ static int __devinit detect_cru_service(void)

#define HPWDT_ARCH 64

asmlinkage void asminline_call(struct cmn_registers *pi86Regs,
unsigned long *pRomEntry)
static void asminline_call(struct cmn_registers *pi86Regs,
unsigned long *pRomEntry)
{
asm("pushq %rbp \n\t"
"movq %rsp, %rbp \n\t"
Expand Down

0 comments on commit 8b1266f

Please sign in to comment.