diff options
author | Michael Neuling <mikey@neuling.org> | 2008-07-08 04:53:03 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-09 02:30:47 -0400 |
commit | b887ec620a7575f54fa025d38fa1008dc8a3b12a (patch) | |
tree | bff66481982c31bf9cdcfe5f0ab4f7afebf851a8 /arch/powerpc/kernel/align.c | |
parent | c1cb299ead405f0ac065c4430729549b187e5b32 (diff) |
powerpc: remove unused variable in emulate_fp_pair
regs is not used in emulate_fp_pair so remove it.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/align.c')
-rw-r--r-- | arch/powerpc/kernel/align.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/align.c b/arch/powerpc/kernel/align.c index c95954c81454..f22b5d0a4a97 100644 --- a/arch/powerpc/kernel/align.c +++ b/arch/powerpc/kernel/align.c | |||
@@ -363,8 +363,8 @@ static int emulate_multiple(struct pt_regs *regs, unsigned char __user *addr, | |||
363 | * Only POWER6 has these instructions, and it does true little-endian, | 363 | * Only POWER6 has these instructions, and it does true little-endian, |
364 | * so we don't need the address swizzling. | 364 | * so we don't need the address swizzling. |
365 | */ | 365 | */ |
366 | static int emulate_fp_pair(struct pt_regs *regs, unsigned char __user *addr, | 366 | static int emulate_fp_pair(unsigned char __user *addr, unsigned int reg, |
367 | unsigned int reg, unsigned int flags) | 367 | unsigned int flags) |
368 | { | 368 | { |
369 | char *ptr = (char *) ¤t->thread.TS_FPR(reg); | 369 | char *ptr = (char *) ¤t->thread.TS_FPR(reg); |
370 | int i, ret; | 370 | int i, ret; |
@@ -759,7 +759,7 @@ int fix_alignment(struct pt_regs *regs) | |||
759 | 759 | ||
760 | /* Special case for 16-byte FP loads and stores */ | 760 | /* Special case for 16-byte FP loads and stores */ |
761 | if (nb == 16) | 761 | if (nb == 16) |
762 | return emulate_fp_pair(regs, addr, reg, flags); | 762 | return emulate_fp_pair(addr, reg, flags); |
763 | 763 | ||
764 | /* If we are loading, get the data from user space, else | 764 | /* If we are loading, get the data from user space, else |
765 | * get it from register values | 765 | * get it from register values |