Remove the invalid input for platform module

Remove the invalid input for the platform module,
as it's not currently used in the Mbed OS platform setup \
termination code.
diff --git a/include/mbedtls/platform.h b/include/mbedtls/platform.h
index a1cd689..cb21d2a 100644
--- a/include/mbedtls/platform.h
+++ b/include/mbedtls/platform.h
@@ -43,8 +43,7 @@
 #include "platform_time.h"
 #endif
 
-#define MBEDTLS_ERR_PLATFORM_INVALID_DATA    -0x0080 /**< Bad input parameters to the platform function. */
-#define MBEDTLS_ERR_PLATFORM_HW_FAILED       -0x0082 /**< Hardware platform function failed. */
+#define MBEDTLS_ERR_PLATFORM_HW_FAILED       -0x0080 /**< Hardware platform function failed. */
 
 #ifdef __cplusplus
 extern "C" {