From patchwork Tue Mar 26 10:22:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 15658 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 8EDA223E64 for ; Tue, 26 Mar 2013 10:22:24 +0000 (UTC) Received: from mail-ve0-f174.google.com (mail-ve0-f174.google.com [209.85.128.174]) by fiordland.canonical.com (Postfix) with ESMTP id 2BEF1A198C6 for ; Tue, 26 Mar 2013 10:22:24 +0000 (UTC) Received: by mail-ve0-f174.google.com with SMTP id jz10so3012095veb.33 for ; Tue, 26 Mar 2013 03:22:23 -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=osMb0AM5hVguebFfFkT8fnSooWtAdCG+4Z18hWwQaDzsA2lQ1XhcwJJ8iwM5+e8CP5 Y8cZYczx/SVq8QNLEbzJ6dOrkdRxK1UQN/46zNxAFyembmKFsNfY2+5wr/mBQDKykYAY pJbd4OKyPL1Ds744JUuwRx9bOhH0sWuZNgOLGfK/pMFxuABPMZjBEBqWULSzhWS7lfnN vlXM9S8CaAWKxvsFMKaEyoX3UkNNva0N/WZjCajRk1GzHMIuTa0udgCnE9zmh3f0whrH qgr1B5GGGkiRmc21FTgb9CvpnkaygjiTslgv07TVia5kVls0j0MQFE3R6RHq5siPg5Vz EF1g== X-Received: by 10.52.76.103 with SMTP id j7mr16464139vdw.90.1364293343708; Tue, 26 Mar 2013 03:22:23 -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 cg12csp64351ved; Tue, 26 Mar 2013 03:22:23 -0700 (PDT) X-Received: by 10.66.25.147 with SMTP id c19mr22948182pag.207.1364293339180; Tue, 26 Mar 2013 03:22:19 -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 iw4si17406647pac.182.2013.03.26.03.22.17 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 26 Mar 2013 03:22:18 -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 1UKR19-0002H9-TQ; Tue, 26 Mar 2013 10:22:12 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org, Arnd Bergmann , "Michael S. Tsirkin" , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Will Deacon , Paul Brook , Aurelien Jarno Subject: [PATCH v2 01/11] versatile_pci: Fix hardcoded tabs Date: Tue, 26 Mar 2013 10:22:01 +0000 Message-Id: <1364293331-8722-2-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1364293331-8722-1-git-send-email-peter.maydell@linaro.org> References: <1364293331-8722-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQklhR1jrHyHDBd7bjLWPVIkw1soqpmLy2O4wF4i9mmfuNe63KH+qZz1YIqs5287rc/nfoBE 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; }