From patchwork Wed Apr 4 15:31:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 7627 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id B125C23E5B for ; Wed, 4 Apr 2012 15:31:43 +0000 (UTC) Received: from mail-yx0-f180.google.com (mail-yx0-f180.google.com [209.85.213.180]) by fiordland.canonical.com (Postfix) with ESMTP id 7A293A180D2 for ; Wed, 4 Apr 2012 15:31:43 +0000 (UTC) Received: by yenl4 with SMTP id l4so272774yen.11 for ; Wed, 04 Apr 2012 08:31:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=Tg9twvbhKFd69y8ULC74Ib7KjiptDmG6ze6r+topOds=; b=YunXUi4EafPo3OZ9NvmNCCiiZ09EtCpGwzjFfMvrDjP42h0hgfwg/oYEnFSKPOcGHy Emy0zYF3Kwf0ZC2meOU9UgcAZwIC0A3fdz6Z0ufyo+agq0NE5vr8rNVpOhs143M5VVma Kuw0HFRqJzksNdjTKZQxvfs2exxzCSim7jrAjQ/AnQEP9v+YUW9pdybeJMrCaW3JEpPW h/ZolwAwZSM0EHmhYMBj4EUboSNWLT5NnbAmnzdGV5Ypl5rijlsnn4VYCBGiXUsakLgl 0zR502bcm4E+Qyx0z5gVqkGejdB6Yd9hpBN2pMiZ07udqdLnVaiTvXZECglWJxxLoPKe LVjw== Received: by 10.50.51.197 with SMTP id m5mr2057856igo.38.1333553502611; Wed, 04 Apr 2012 08:31:42 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.164.217 with SMTP id f25csp45132iby; Wed, 4 Apr 2012 08:31:42 -0700 (PDT) Received: by 10.180.103.134 with SMTP id fw6mr7504855wib.0.1333553501480; Wed, 04 Apr 2012 08:31:41 -0700 (PDT) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id u31si1133425weq.96.2012.04.04.08.31.40 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 04 Apr 2012 08:31:41 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1SFSAp-0003Ie-OH; Wed, 04 Apr 2012 16:31:03 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: Paul Brook , Evgeny Voevodin , patches@linaro.org Subject: [PATCH 13/13] hw/arm_gic.c: Remove stray hardcoded tab Date: Wed, 4 Apr 2012 16:31:02 +0100 Message-Id: <1333553462-12633-14-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1333553462-12633-1-git-send-email-peter.maydell@linaro.org> References: <1333553462-12633-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQm4tF3FzPaG7XpH+BHgRkRfQcudLKnEYHf5H0N6lUqo23fpI/8F/nqgOLSDdBM25J7RQqD8 Remove the single instance of a hardcoded tab from hw/arm_gic.c. Signed-off-by: Peter Maydell --- hw/arm_gic.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/arm_gic.c b/hw/arm_gic.c index f395e4b..a2aee63 100644 --- a/hw/arm_gic.c +++ b/hw/arm_gic.c @@ -160,7 +160,7 @@ static void gic_update(gic_state *s) cm = 1 << cpu; s->current_pending[cpu] = 1023; if (!s->enabled || !s->cpu_enabled[cpu]) { - qemu_irq_lower(s->parent_irq[cpu]); + qemu_irq_lower(s->parent_irq[cpu]); return; } best_prio = 0x100;