summaryrefslogtreecommitdiff
path: root/core/minute-ia/include
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2021-08-30 17:42:00 +0000
committerCommit Bot <commit-bot@chromium.org>2021-08-31 16:56:01 +0000
commit5fa669005c3779b7310bf6bfe43f741a3d8ae871 (patch)
tree076327c058f14bf3dcfea811ca16fc0f1fc3c8e0 /core/minute-ia/include
parent5a1a08381adff5caee99bdfea8fcb7ca30b31734 (diff)
downloadchrome-ec-5fa669005c3779b7310bf6bfe43f741a3d8ae871.tar.gz
builtin: Add math.h
Add a "math.h" to "builtin" and rename "math.h" in the "core" directories to "fpu.h". "builtin" is the directory containing headers that mirror those in the standard library and is used for device builds. The host builds exclude the "builtin" directory and use the standard library. Without this change, building host tools such as "ectool" and attempting to include "math.h" would result in incorrectly picking up the "math.h" from the device "core" directory, not the standard library version. BRANCH=none BUG=b:144959033 TEST=make buildall Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Id6b2df42cb0ff5ec2cfc07aa8f29861da6804bdf Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3130625 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'core/minute-ia/include')
-rw-r--r--core/minute-ia/include/fpu.h (renamed from core/minute-ia/include/math.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/minute-ia/include/math.h b/core/minute-ia/include/fpu.h
index 00f73ccaa1..fbcc7ae0f0 100644
--- a/core/minute-ia/include/math.h
+++ b/core/minute-ia/include/fpu.h
@@ -5,8 +5,8 @@
/* Math utility functions for minute-IA */
-#ifndef __CROS_EC_MATH_H
-#define __CROS_EC_MATH_H
+#ifndef __CROS_EC_FPU_H
+#define __CROS_EC_FPU_H
#include "config.h"
@@ -238,4 +238,4 @@ static inline int __isinff(float v)
}
#endif /* CONFIG_FPU */
-#endif /* __CROS_EC_MATH_H */
+#endif /* __CROS_EC_FPU_H */