From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOVjK-0002BC-Hf for qemu-devel@nongnu.org; Sat, 06 Apr 2013 12:12:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UOVjF-0005lJ-7e for qemu-devel@nongnu.org; Sat, 06 Apr 2013 12:12:38 -0400 Received: from 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]:33592 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOVjF-0005jK-0n for qemu-devel@nongnu.org; Sat, 06 Apr 2013 12:12:33 -0400 From: Peter Maydell Date: Sat, 6 Apr 2013 16:44:26 +0100 Message-Id: <1365263076-16909-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1365263076-16909-1-git-send-email-peter.maydell@linaro.org> References: <1365263076-16909-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH v4 01/11] versatile_pci: Fix hardcoded tabs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Arnd Bergmann , "Michael S. Tsirkin" , patches@linaro.org, Will Deacon , Paul Brook , =?UTF-8?q?Andreas=20F=C3=A4rber?= There is just one line in this source file with a hardcoded tab indent, so just fix it. Signed-off-by: Peter Maydell Acked-by: Paul Brook --- 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 d67ca79..04d0029 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; } -- 1.7.9.5