diff mbox series

MIPS: tools: Move "returns" after "loongson3-llsc-check"

Message ID 1588464302-4690-1-git-send-email-yangtiezhu@loongson.cn (mailing list archive)
State Superseded
Headers show
Series MIPS: tools: Move "returns" after "loongson3-llsc-check" | expand

Commit Message

Tiezhu Yang May 3, 2020, 12:05 a.m. UTC
Just move "returns" after "loongson3-llsc-check", no function changes.

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
---
 arch/mips/tools/loongson3-llsc-check.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Thomas Bogendoerfer May 7, 2020, 10:59 a.m. UTC | #1
On Sun, May 03, 2020 at 08:05:02AM +0800, Tiezhu Yang wrote:
> Just move "returns" after "loongson3-llsc-check", no function changes.
> 
> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
> ---
>  arch/mips/tools/loongson3-llsc-check.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

applied to mips-next.

Thomas.
diff mbox series

Patch

diff --git a/arch/mips/tools/loongson3-llsc-check.c b/arch/mips/tools/loongson3-llsc-check.c
index facd016..bdbc7b4 100644
--- a/arch/mips/tools/loongson3-llsc-check.c
+++ b/arch/mips/tools/loongson3-llsc-check.c
@@ -303,7 +303,7 @@  int main(int argc, char *argv[])
 out_close:
 	close(vmlinux_fd);
 out_ret:
-	fprintf(stdout, "loongson3-llsc-check %s\n",
-		status ? "returns failure" : "returns success");
+	fprintf(stdout, "loongson3-llsc-check returns %s\n",
+		status ? "failure" : "success");
 	return status;
 }