| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH] MIPS: tracing: Fix the indentation of mcount.S |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Sun, 18 Jul 2010 03:10:51 +0800 |
| Cc: | linux-mips@linux-mips.org, Wu Zhangjin <wuzhangjin@gmail.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=6d7y1BDHKMq6wKs33M2LFaRmOv2YIqN+Ju5JVdyZ9KY=; b=Rl25S2HHlyl0OVh0o8Zi6yEvm+qWnU6sslItdlsfbVwBAdL5o4AlNz0nJRTiAxmBMQ QDA+D2sWdTM62l0mQtSLMNogQZI0V3Z6i0i4ByDTubOJltjXi+H9T2YIfPTiNPOw6c2C 247RReVmmj0pH9nYj1MneMze7gWDSdWc6mw3Y= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=EoG3Bx1ZNUejkfFXi8LDTqgmQ/m3KNtL3WuLxbQ8wc9QFLerYDcZ5tZMff41+PsskV 7o51yhRnQVaSx6ZAn3rlf8qBGobaFZwu68gsQMs+JD8uWOdtW5Icg5VMfNJnbprliorE VoMW/j+Wsq1H/SRHB6htwU11b0K3VG33hyHb0= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
From: Wu Zhangjin <wuzhangjin@gmail.com>
The commit "MIPS: Tracing: Cleanup the arguments passing of
prepare_ftrace_return" has moved the "jal prepare_ftrace_return"
instruction after the handling of the 3rd argument but forgotten
removing the superfluous space before the related instructions, this
patch does it.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
---
arch/mips/kernel/mcount.S | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/mips/kernel/mcount.S b/arch/mips/kernel/mcount.S
index 6bfcb7a..4c968e7 100644
--- a/arch/mips/kernel/mcount.S
+++ b/arch/mips/kernel/mcount.S
@@ -165,12 +165,12 @@ NESTED(ftrace_graph_caller, PT_SIZE, ra)
/* arg3: Get frame pointer of current stack */
#ifdef CONFIG_FRAME_POINTER
- move a2, fp
+ move a2, fp
#else /* ! CONFIG_FRAME_POINTER */
#ifdef CONFIG_64BIT
- PTR_LA a2, PT_SIZE(sp)
+ PTR_LA a2, PT_SIZE(sp)
#else
- PTR_LA a2, (PT_SIZE+8)(sp)
+ PTR_LA a2, (PT_SIZE+8)(sp)
#endif
#endif
--
1.7.0.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [RFC PATCH] au1000_eth: get ethernet address from platform_data, Manuel Lauss |
|---|---|
| Next by Date: | Re: [PATCH v3] MTD: Nand: Add JZ4740 NAND driver, Artem Bityutskiy |
| Previous by Thread: | [RFC PATCH] au1000_eth: get ethernet address from platform_data, Manuel Lauss |
| Next by Thread: | Re: [PATCH] MIPS: tracing: Fix the indentation of mcount.S, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |