From 2ca9c3d05d0fd83a0a15422829b511aa55dbb4e5 Mon Sep 17 00:00:00 2001 From: Peter Schiffer Date: Tue, 23 Apr 2013 15:43:40 +0200 Subject: Hardware: Added Physical Memory Provider New Providers: * LMI_PhysicalMemoryProvider * LMI_PhysicalMemoryRealizesProvider Other Changes: * Fixed InstanceID in hardware to match the rest of the providers * Removed some unused variables --- mof/60_LMI_Hardware.mof | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'mof') diff --git a/mof/60_LMI_Hardware.mof b/mof/60_LMI_Hardware.mof index cba6459..66bd806 100644 --- a/mof/60_LMI_Hardware.mof +++ b/mof/60_LMI_Hardware.mof @@ -206,6 +206,21 @@ class LMI_PhysicalMemoryRealizes: CIM_Realizes LMI_Memory REF Dependent; }; +[ Provider("cmpi:cmpiLMI_PhysicalMemory") ] +class LMI_PhysicalMemory: CIM_PhysicalMemory +{ +}; + +[ Provider("cmpi:cmpiLMI_PhysicalMemoryRealizes"), Association ] +class LMI_PhysicalMemoryRealizes: CIM_Realizes +{ + [Override("Antecedent")] + LMI_PhysicalMemory REF Antecedent; + + [Override("Dependent")] + LMI_Memory REF Dependent; +}; + /****************************************************************************** * PCI Devices */ -- cgit