From patchwork Fri Sep 16 13:56:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Vivier X-Patchwork-Id: 9335871 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id DF398607FF for ; Fri, 16 Sep 2016 14:04:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D258829FC9 for ; Fri, 16 Sep 2016 14:04:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C72A329FCC; Fri, 16 Sep 2016 14:04:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 592A729FC9 for ; Fri, 16 Sep 2016 14:02:29 +0000 (UTC) Received: from localhost ([::1]:40946 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkth7-0005xn-Rv for patchwork-qemu-devel@patchwork.kernel.org; Fri, 16 Sep 2016 10:00:45 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkte2-0003p1-2R for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:57:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bktds-0007IF-DK for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:57:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14198) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bktdG-0006h8-3z; Fri, 16 Sep 2016 09:57:24 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 407357F77D; Fri, 16 Sep 2016 13:56:40 +0000 (UTC) Received: from thinkpad.redhat.com (ovpn-112-33.ams2.redhat.com [10.36.112.33]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8GDuHkC024127; Fri, 16 Sep 2016 09:56:38 -0400 From: Laurent Vivier To: qemu-trivial@nongnu.org Date: Fri, 16 Sep 2016 15:56:01 +0200 Message-Id: <1474034177-17663-11-git-send-email-lvivier@redhat.com> In-Reply-To: <1474034177-17663-1-git-send-email-lvivier@redhat.com> References: <1474034177-17663-1-git-send-email-lvivier@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Fri, 16 Sep 2016 13:56:40 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 10/26] m68k: use exit(EXIT_SUCCESS) and exit(EXIT_FAILURE) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Laurent Vivier , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP This patch is the result of coccinelle script scripts/coccinelle/exit.cocci Signed-off-by: Laurent Vivier --- hw/m68k/an5206.c | 6 +++--- hw/m68k/dummy_m68k.c | 4 ++-- hw/m68k/mcf5208.c | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hw/m68k/an5206.c b/hw/m68k/an5206.c index 142bab9..9c2cb1e 100644 --- a/hw/m68k/an5206.c +++ b/hw/m68k/an5206.c @@ -45,7 +45,7 @@ static void an5206_init(MachineState *machine) cpu = cpu_m68k_init(cpu_model); if (!cpu) { error_report("Unable to find m68k CPU definition"); - exit(1); + exit(EXIT_FAILURE); } env = &cpu->env; @@ -72,7 +72,7 @@ static void an5206_init(MachineState *machine) return; } fprintf(stderr, "Kernel image must be specified\n"); - exit(1); + exit(EXIT_FAILURE); } kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry, @@ -89,7 +89,7 @@ static void an5206_init(MachineState *machine) } if (kernel_size < 0) { fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename); - exit(1); + exit(EXIT_FAILURE); } env->pc = entry; diff --git a/hw/m68k/dummy_m68k.c b/hw/m68k/dummy_m68k.c index 0b11d20..09981a0 100644 --- a/hw/m68k/dummy_m68k.c +++ b/hw/m68k/dummy_m68k.c @@ -37,7 +37,7 @@ static void dummy_m68k_init(MachineState *machine) cpu = cpu_m68k_init(cpu_model); if (!cpu) { fprintf(stderr, "Unable to find m68k CPU definition\n"); - exit(1); + exit(EXIT_FAILURE); } env = &cpu->env; @@ -67,7 +67,7 @@ static void dummy_m68k_init(MachineState *machine) if (kernel_size < 0) { fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename); - exit(1); + exit(EXIT_FAILURE); } } else { entry = 0; diff --git a/hw/m68k/mcf5208.c b/hw/m68k/mcf5208.c index 2415557..3c833ba 100644 --- a/hw/m68k/mcf5208.c +++ b/hw/m68k/mcf5208.c @@ -213,7 +213,7 @@ static void mcf5208evb_init(MachineState *machine) cpu = cpu_m68k_init(cpu_model); if (!cpu) { fprintf(stderr, "Unable to find m68k CPU definition\n"); - exit(1); + exit(EXIT_FAILURE); } env = &cpu->env; @@ -241,7 +241,7 @@ static void mcf5208evb_init(MachineState *machine) if (nb_nics > 1) { fprintf(stderr, "Too many NICs\n"); - exit(1); + exit(EXIT_FAILURE); } if (nd_table[0].used) mcf_fec_init(address_space_mem, &nd_table[0], @@ -275,7 +275,7 @@ static void mcf5208evb_init(MachineState *machine) return; } fprintf(stderr, "Kernel image must be specified\n"); - exit(1); + exit(EXIT_FAILURE); } kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry, @@ -292,7 +292,7 @@ static void mcf5208evb_init(MachineState *machine) } if (kernel_size < 0) { fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename); - exit(1); + exit(EXIT_FAILURE); } env->pc = entry;