summaryrefslogtreecommitdiffstats
path: root/mof/60_LMI_Hardware.mof
diff options
context:
space:
mode:
authorPeter Schiffer <pschiffe@redhat.com>2013-07-16 14:01:35 +0200
committerPeter Schiffer <pschiffe@redhat.com>2013-07-16 14:01:35 +0200
commitec3391938be3058f11036bade813ba4239d7103b (patch)
tree4a0d953557ad6c9aa47730f23c0e11c6f085c8f1 /mof/60_LMI_Hardware.mof
parent607c7feaa11f124b835860a36f9a6f40871ac939 (diff)
downloadopenlmi-providers-ec3391938be3058f11036bade813ba4239d7103b.tar.gz
openlmi-providers-ec3391938be3058f11036bade813ba4239d7103b.tar.xz
openlmi-providers-ec3391938be3058f11036bade813ba4239d7103b.zip
Hardware: Update LMI_PCIDevice provider
LMI_PCIDevice provider was updated to match the rest of the providers in the Hardware, multiple information was added. As main and only source of information is still libpci library, as udev doesn't provide all necessary information and if used, it would have to be combined with libpci anyway.
Diffstat (limited to 'mof/60_LMI_Hardware.mof')
-rw-r--r--mof/60_LMI_Hardware.mof14
1 files changed, 7 insertions, 7 deletions
diff --git a/mof/60_LMI_Hardware.mof b/mof/60_LMI_Hardware.mof
index 41e80b8..74b85a2 100644
--- a/mof/60_LMI_Hardware.mof
+++ b/mof/60_LMI_Hardware.mof
@@ -356,15 +356,15 @@ class LMI_PhysicalBatteryContainer: CIM_Container
[ Provider("cmpi:cmpiLMI_PCIDevice") ]
class LMI_PCIDevice: CIM_PCIDevice
{
- [ Description("Name of the subsystem") ]
- string SubsystemName;
-
- [ Description("Name of the subsystem vendor") ]
- string SubsystemVendorName;
+ [ Description("Name of the vendor") ]
+ string VendorName;
[ Description("Name of the device") ]
string PCIDeviceName;
- [ Description("Name of the vendor") ]
- string VendorName;
+ [ Description("Name of the subsystem vendor") ]
+ string SubsystemVendorName;
+
+ [ Description("Name of the subsystem") ]
+ string SubsystemName;
};