Unflatten edk includes
Installing the edk headers into a folder requires us to do odd things
with imports, and either include headers with "..", or otherwise get the
include directories lined up.
Move the contents of edk/*.c/h up a level, and just simplify the include
structure. This is done to fix the immediate change of the prior patch
and make this build again. Happy to discuss other options.
Change-Id: I328f20bca6d23100993493445bee0e5e11d2866a
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/common-utils.h b/common-utils.h
index 6cdccb6..4d5fb4a 100644
--- a/common-utils.h
+++ b/common-utils.h
@@ -1,7 +1,7 @@
#ifndef CPER_LIB_COMMON_UTILS_H
#define CPER_LIB_COMMON_UTILS_H
-#include "edk/BaseTypes.h"
+#include "BaseTypes.h"
int bcd_to_int(UINT8 bcd);
UINT8 int_to_bcd(int value);