summaryrefslogtreecommitdiffstats
path: root/src/hardware/LMI_ProcessorCacheMemoryProvider.c
diff options
context:
space:
mode:
authorJan Synacek <jsynacek@redhat.com>2014-04-29 08:33:13 +0200
committerJan Synacek <jsynacek@redhat.com>2014-04-30 15:54:14 +0200
commit55f63d29f5d2b4e82979d71386df58394e87ef5a (patch)
tree34227f5696df9b3a85c5999d2fd48f50be82681f /src/hardware/LMI_ProcessorCacheMemoryProvider.c
parentdab89c6afb2a2b339ebadea3d47e841cd749b5ef (diff)
downloadopenlmi-providers-55f63d29f5d2b4e82979d71386df58394e87ef5a.tar.gz
openlmi-providers-55f63d29f5d2b4e82979d71386df58394e87ef5a.tar.xz
openlmi-providers-55f63d29f5d2b4e82979d71386df58394e87ef5a.zip
libopenlmi: reorganize and gather
Make naming consistent. Gather common functionality into one library and try to use it across all providers. Introduce libtool-style versioning for libraries.
Diffstat (limited to 'src/hardware/LMI_ProcessorCacheMemoryProvider.c')
-rw-r--r--src/hardware/LMI_ProcessorCacheMemoryProvider.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/hardware/LMI_ProcessorCacheMemoryProvider.c b/src/hardware/LMI_ProcessorCacheMemoryProvider.c
index b8e0bfe..2365856 100644
--- a/src/hardware/LMI_ProcessorCacheMemoryProvider.c
+++ b/src/hardware/LMI_ProcessorCacheMemoryProvider.c
@@ -21,7 +21,6 @@
#include <konkret/konkret.h>
#include "LMI_ProcessorCacheMemory.h"
#include "LMI_Hardware.h"
-#include "globals.h"
#include "dmidecode.h"
#include "sysfs.h"
@@ -93,7 +92,7 @@ static CMPIStatus LMI_ProcessorCacheMemoryEnumInstances(
LMI_ProcessorCacheMemory_Set_SystemName(&lmi_cpu_cache,
get_system_name());
LMI_ProcessorCacheMemory_Set_CreationClassName(&lmi_cpu_cache,
- ORGID "_" CPU_CACHE_CLASS_NAME);
+ LMI_ORGID "_" CPU_CACHE_CLASS_NAME);
LMI_ProcessorCacheMemory_Set_BlockSize(&lmi_cpu_cache, 1);
LMI_ProcessorCacheMemory_Set_Volatile(&lmi_cpu_cache, 1);
@@ -118,7 +117,7 @@ static CMPIStatus LMI_ProcessorCacheMemoryEnumInstances(
/* do we have dmidecode output? */
if (dmi_cpu_caches_nb > 0) {
snprintf(instance_id, INSTANCE_ID_LEN,
- ORGID ":" ORGID "_" CPU_CACHE_CLASS_NAME ":%s",
+ LMI_ORGID ":" LMI_ORGID "_" CPU_CACHE_CLASS_NAME ":%s",
dmi_cpu_caches[i].id);
LMI_ProcessorCacheMemory_Set_DeviceID(&lmi_cpu_cache,
@@ -134,7 +133,7 @@ static CMPIStatus LMI_ProcessorCacheMemoryEnumInstances(
get_cachestatus(dmi_cpu_caches[i].status));
} else {
snprintf(instance_id, INSTANCE_ID_LEN,
- ORGID ":" ORGID "_" CPU_CACHE_CLASS_NAME ":%s",
+ LMI_ORGID ":" LMI_ORGID "_" CPU_CACHE_CLASS_NAME ":%s",
sysfs_cpu_caches[i].id);
LMI_ProcessorCacheMemory_Set_DeviceID(&lmi_cpu_cache,