tcti: Remove old file logging.h

This should have been removed when the common logging code went in.

Signed-off-by: Philip Tricca <philip.b.tricca@intel.com>
diff --git a/tcti/logging.h b/tcti/logging.h
deleted file mode 100644
index 04240ee..0000000
--- a/tcti/logging.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "sapi/tpm20.h"
-
-#include "tcti.h"
-
-#define TCTI_LOG_CALLBACK_INVOKE(ctx, type, format, ...) \
-    TCTI_LOG_CALLBACK(ctx)(TCTI_LOG_DATA(ctx), type, format, ##__VA_ARGS__)
-#define TCTI_LOG( ctx, type, format, ...) \
-    (TCTI_LOG_CALLBACK( ctx ) != NULL) ? \
-      TCTI_LOG_CALLBACK_INVOKE( ctx, type, format, ##__VA_ARGS__) : 0
-
-#define TCTI_LOG_BUFFER_CALLBACK_INVOKE( ctx, type, data, length ) \
-    TCTI_LOG_BUFFER_CALLBACK( ctx )( TCTI_LOG_DATA(ctx), type, data, length )
-#define TCTI_LOG_BUFFER( ctx, type, data, length ) \
-    (TCTI_LOG_BUFFER_CALLBACK( ctx ) != NULL) ? \
-      TCTI_LOG_BUFFER_CALLBACK_INVOKE( ctx, type, data, length ) : 0