Fix mismatch data for memoryController and socket

This commit corrects the memoryController and socket values,
which are parsed from config json file.

Change-Id: I52a0379dc4be8fe6d092a345fcb9580f7a3fc108
Signed-off-by: Chanh Nguyen <chanh@os.amperecomputing.com>
diff --git a/src/dimm.cpp b/src/dimm.cpp
index dc8bb92..d0c8b91 100644
--- a/src/dimm.cpp
+++ b/src/dimm.cpp
@@ -235,8 +235,8 @@
             uint8_t slotValue = it.value()["Slot"].get<uint8_t>();
             uint8_t channelValue = it.value()["Channel"].get<uint8_t>();
 
-            socket(memoryControllerValue);
-            memoryController(socketValue);
+            socket(socketValue);
+            memoryController(memoryControllerValue);
             slot(slotValue);
             channel(channelValue);
         }