diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-04-19 11:15:17 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2013-04-19 11:15:17 +0100 |
commit | c5c86c5346e927f55918ffdf1b09742fee7a5d8d (patch) | |
tree | 3b5d70f451be3efc41e9016c0c1e930ed0c4460e /hw/pci-host/versatile.c | |
parent | 09dada400328d75daf79e3eca1e48e024fec148d (diff) | |
download | qemu-c5c86c5346e927f55918ffdf1b09742fee7a5d8d.tar.gz qemu-c5c86c5346e927f55918ffdf1b09742fee7a5d8d.tar.bz2 qemu-c5c86c5346e927f55918ffdf1b09742fee7a5d8d.zip |
versatile_pci: Fix hardcoded tabs
There is just one line in this source file with a hardcoded tab
indent, so just fix it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/pci-host/versatile.c')
-rw-r--r-- | hw/pci-host/versatile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci-host/versatile.c b/hw/pci-host/versatile.c index d67ca796fb..04d0029119 100644 --- a/hw/pci-host/versatile.c +++ b/hw/pci-host/versatile.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; } |