qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] pci: add const to pci_is_express(), pci_config_size


From: Isaku Yamahata
Subject: [Qemu-devel] [PATCH] pci: add const to pci_is_express(), pci_config_size().
Date: Thu, 27 May 2010 14:42:37 +0900
User-agent: Mutt/1.5.19 (2009-01-05)

add const to pci_is_express(), pci_config_size().

Signed-off-by: Isaku Yamahata <address@hidden>
---
 hw/pci.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/pci.h b/hw/pci.h
index 6eee93a..b803593 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -339,12 +339,12 @@ void pci_qdev_register_many(PCIDeviceInfo *info);
 PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name);
 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name);
 
-static inline int pci_is_express(PCIDevice *d)
+static inline int pci_is_express(const PCIDevice *d)
 {
     return d->cap_present & QEMU_PCI_CAP_EXPRESS;
 }
 
-static inline uint32_t pci_config_size(PCIDevice *d)
+static inline uint32_t pci_config_size(const PCIDevice *d)
 {
     return pci_is_express(d) ? PCIE_CONFIG_SPACE_SIZE : PCI_CONFIG_SPACE_SIZE;
 }
-- 
1.6.6.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]