aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2009-11-12 14:58:40 +0900
committerMichael S. Tsirkin <mst@redhat.com>2009-12-01 17:52:04 +0200
commit3c217c14f58c0146a0dbca01716cd850a63a0e81 (patch)
tree5808c6c7d4eb9de7d46a31573658b09e0194c294 /hw
parent3e21ffc954c09e90b25a446813ff1c0b26817aef (diff)
downloadqemu-3c217c14f58c0146a0dbca01716cd850a63a0e81.zip
qemu-3c217c14f58c0146a0dbca01716cd850a63a0e81.tar.gz
qemu-3c217c14f58c0146a0dbca01716cd850a63a0e81.tar.bz2
pci: remove some unnecessary comment in pci.h
This patch removes some comment which should go into commit log in pci.h. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/pci.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/hw/pci.h b/hw/pci.h
index ff5f36c..b2c2c92 100644
--- a/hw/pci.h
+++ b/hw/pci.h
@@ -382,17 +382,10 @@ typedef struct {
PCIConfigWriteFunc *config_write;
/* pci config header type */
- uint8_t header_type; /* this is necessary for initialization
- * code to know its header type before
- * device specific code can initialize
- * configuration space.
- */
+ uint8_t header_type;
/* pcie stuff */
- int is_express; /* is this device pci express?
- * initialization code needs to know this before
- * each specific device initialization.
- */
+ int is_express; /* is this device pci express? */
} PCIDeviceInfo;
void pci_qdev_register(PCIDeviceInfo *info);