From patchwork Sun Mar 24 11:32:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 15566 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 D70F123E3E for ; Sun, 24 Mar 2013 11:32:53 +0000 (UTC) Received: from mail-vb0-f43.google.com (mail-vb0-f43.google.com [209.85.212.43]) by fiordland.canonical.com (Postfix) with ESMTP id 78426A18D65 for ; Sun, 24 Mar 2013 11:32:53 +0000 (UTC) Received: by mail-vb0-f43.google.com with SMTP id fs19so3377906vbb.16 for ; Sun, 24 Mar 2013 04:32:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references:x-gm-message-state; bh=ihmFsq3i7GVUkiH8MYRO7QVyiXEfdWVzo9SZ5G8A3q8=; b=FzsFY1GQAnQDxk4m6QK7XWyR6tDdULQwO3N4FoctRiCu2s5GN8T3LkcDU7YoQaOUGO rgNZVKLiBP/F+5udkm1cEeo7XmRDp5H1mD66iBfJ8j4tMTkmhp1vHcwt4F1079Nfay3a xVitFRwDPytTte+NVo2mfzW+RssVHHOX/L9ABNrl2Rw49/U3sDiffyWQSPeateLDXZ5p v3VmyBnbf0b23/GVgQ+ieRnJqkj5aQZe2XU9RU6/5/U0BPMRcQDTGcTN2XaOqcyDEuCV EhQD/901lehsg7Qf0H/ogYqfi2Dlw6yzhX8kFkmJoq4ViN5GLhHDsYoLd1vKFJ9Yn+6E ooSQ== X-Received: by 10.220.154.199 with SMTP id p7mr10777339vcw.46.1364124773005; Sun, 24 Mar 2013 04:32:53 -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.59.4.204 with SMTP id cg12csp4961ved; Sun, 24 Mar 2013 04:32:52 -0700 (PDT) X-Received: by 10.180.74.131 with SMTP id t3mr11800299wiv.26.1364124772062; Sun, 24 Mar 2013 04:32:52 -0700 (PDT) Received: from mnementh.archaic.org.uk (1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa. [2001:8b0:1d0::1]) by mx.google.com with ESMTPS id s2si3618370wib.80.2013.03.24.04.32.51 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 24 Mar 2013 04:32:52 -0700 (PDT) Received-SPF: neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) client-ip=2001:8b0:1d0::1; Authentication-Results: mx.google.com; spf=neutral (google.com: 2001:8b0:1d0::1 is neither permitted nor denied by best guess record for domain of pm215@archaic.org.uk) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1UJjAG-0001Vv-4O; Sun, 24 Mar 2013 11:32:40 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org, =?UTF-8?q?Andreas=20F=C3=A4rber?= , "Michael S. Tsirkin" , Paul Brook , Arnd Bergmann , Will Deacon Subject: [PATCH 01/10] versatile_pci: Fix hardcoded tabs Date: Sun, 24 Mar 2013 11:32:31 +0000 Message-Id: <1364124760-5794-2-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1364124760-5794-1-git-send-email-peter.maydell@linaro.org> References: <1364124760-5794-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQmjY68laxBkGea2qQdXgAk81qgOaguXGcAyFu4h3VRqUc1TTnT3gdC9VBViHkYTUSfxKjWJ There is just one line in this source file with a hardcoded tab indent, so just fix it. Signed-off-by: Peter Maydell --- hw/versatile_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/versatile_pci.c b/hw/versatile_pci.c index 0b97a40..16ce5d1 100644 --- a/hw/versatile_pci.c +++ b/hw/versatile_pci.c @@ -104,7 +104,7 @@ static int pci_realview_init(SysBusDevice *dev) static int versatile_pci_host_init(PCIDevice *d) { pci_set_word(d->config + PCI_STATUS, - PCI_STATUS_66MHZ | PCI_STATUS_DEVSEL_MEDIUM); + PCI_STATUS_66MHZ | PCI_STATUS_DEVSEL_MEDIUM); pci_set_byte(d->config + PCI_LATENCY_TIMER, 0x10); return 0; }