Make PLDM call to do HRESET an asynchronous call:

When a SBE timeout is detected, an HRESET is requested.
The call to request the reset will wait for a response.
No additional processing of the response is required, so this change
will make the reset call asynchronous.

Change-Id: I2c7c1b44dbd3c9574732ab90841405456f5f8978
Signed-off-by: Chris Cain <cjcain@us.ibm.com>
diff --git a/pldm.cpp b/pldm.cpp
index c00d484..b703618 100644
--- a/pldm.cpp
+++ b/pldm.cpp
@@ -377,7 +377,8 @@
         return;
     }
 
-    sendPldm(request);
+    // Make asynchronous call to do the reset
+    sendPldm(request, true);
 }
 
 bool Interface::getMctpInstanceId(uint8_t& instanceId)