conf: small changes to comments in virDomainDeviceInfo

romfile wasn't mentioned in the comment, and the fact that rombar is
now supported for network interfaces also wasn't there.
This commit is contained in:
Laine Stump 2012-02-09 02:33:29 -05:00
parent 4165d68aaa
commit d0cb00ab9f

View File

@ -167,10 +167,12 @@ struct _virDomainDeviceInfo {
union {
virDomainDeviceUSBMaster usb;
} master;
/* rombar is only used for pci hostdev devices, and bootIndex only
* for disk, network interface, and hostdev devices */
/* rombar and romfile are only used for pci hostdev and network
* devices. */
int rombar; /* enum virDomainPciRombarMode */
char *romfile;
/* bootIndex is only user for disk, network interface, and
* hostdev devices. */
int bootIndex;
};