summaryrefslogtreecommitdiffstats
path: root/src/hardware/LMI_MemorySlotProvider.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hardware/LMI_MemorySlotProvider.c')
-rw-r--r--src/hardware/LMI_MemorySlotProvider.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/hardware/LMI_MemorySlotProvider.c b/src/hardware/LMI_MemorySlotProvider.c
index 2c8116f..f299e4c 100644
--- a/src/hardware/LMI_MemorySlotProvider.c
+++ b/src/hardware/LMI_MemorySlotProvider.c
@@ -20,7 +20,7 @@
#include <konkret/konkret.h>
#include "LMI_MemorySlot.h"
-#include "LMI_Hardware.h"
+#include "utils.h"
#include "dmidecode.h"
static const CMPIBroker* _cb = NULL;
@@ -57,7 +57,7 @@ static CMPIStatus LMI_MemorySlotEnumInstances(
{
LMI_MemorySlot lmi_mem_slot;
const char *ns = KNameSpace(cop);
- char tag[LONG_INT_LEN], instance_id[INSTANCE_ID_LEN];
+ char tag[LONG_INT_LEN], instance_id[BUFLEN];
unsigned i;
DmiMemory dmi_memory;
@@ -69,8 +69,8 @@ static CMPIStatus LMI_MemorySlotEnumInstances(
LMI_MemorySlot_Init(&lmi_mem_slot, _cb, ns);
snprintf(tag, LONG_INT_LEN, "%d", dmi_memory.slots[i].slot_number);
- snprintf(instance_id, INSTANCE_ID_LEN,
- LMI_ORGID ":" LMI_ORGID "_" MEMORY_SLOT_CLASS_NAME ":%d",
+ snprintf(instance_id, BUFLEN,
+ LMI_ORGID ":" LMI_MemorySlot_ClassName ":%d",
dmi_memory.slots[i].slot_number);
LMI_MemorySlot_Set_ConnectorLayout(&lmi_mem_slot,
@@ -82,7 +82,7 @@ static CMPIStatus LMI_MemorySlotEnumInstances(
LMI_MemorySlot_ConnectorGender_Female);
LMI_MemorySlot_Set_CreationClassName(&lmi_mem_slot,
- LMI_ORGID "_" MEMORY_SLOT_CLASS_NAME);
+ LMI_MemorySlot_ClassName);
LMI_MemorySlot_Set_Tag(&lmi_mem_slot, tag);
LMI_MemorySlot_Set_Number(&lmi_mem_slot,
dmi_memory.slots[i].slot_number);