]> Git Repo - J-u-boot.git/blobdiff - include/compiler.h
board: freescale: p1_p2_rdb_pc: Allow to compile without __SW_BOOT_SD macro
[J-u-boot.git] / include / compiler.h
index 27b9843497a4ef7bf30dfd520ed6d002025f38b1..ef7b2cb1f7ea354cd075c0d2e561d01d59ddfdcf 100644 (file)
@@ -68,6 +68,9 @@ typedef uint32_t __u32;
 typedef unsigned int uint;
 typedef unsigned long ulong;
 
+/* Define these on the host so we can build some target code */
+typedef __u32 u32;
+
 #define uswap_16(x) \
        ((((x) & 0xff00) >> 8) | \
         (((x) & 0x00ff) << 8))
@@ -151,7 +154,13 @@ typedef unsigned long int uintptr_t;
 #define MEM_SUPPORT_64BIT_DATA 0
 #endif
 
-static inline bool host_build(void) {
+/**
+ * tools_build() - check if we are building host tools
+ *
+ * Return: true if building for the host, false if for a target
+ */
+static inline bool tools_build(void)
+{
 #ifdef USE_HOSTCC
        return true;
 #else
This page took 0.027262 seconds and 4 git commands to generate.