Removed duplicate ChipType_t definitions

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Idbe16f83dc6a519140bd8b489f0b3fe311fd48aa
diff --git a/src/chip_data/hei_chip_data.hpp b/src/chip_data/hei_chip_data.hpp
index 810198c..ba3d2e9 100644
--- a/src/chip_data/hei_chip_data.hpp
+++ b/src/chip_data/hei_chip_data.hpp
@@ -1,10 +1,12 @@
 #pragma once
 
-#include "hei_includes.hpp"
+#include <hei_includes.hpp>
 
 namespace libhei
 {
 
 typedef uint32_t ChipType_t;
 
+static constexpr ChipType_t DEFAULT_CHIP_TYPE = 0;
+
 } // end namespace libhei
diff --git a/src/chip_data/hei_chip_type.hpp b/src/chip_data/hei_chip_type.hpp
deleted file mode 100644
index 352282e..0000000
--- a/src/chip_data/hei_chip_type.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-/**
-* @file hei_chip_type.hpp
-* @brief Module Description
-*
-*   This module contains common types and constants.
-*
-* End Module Description
-*/
-
-
-#include <stdint.h>
-
-namespace libhei
-{
-
-typedef uint32_t ChipType_t;
-
-static constexpr ChipType_t DEFAULT_CHIP_TYPE = 0;
-
-}//namespace libhei