diff mbox series

[02/49] compiler: Add a comment to host_build()

Message ID 20210503231136.744283-2-sjg@chromium.org
State Changes Requested
Delegated to: Tom Rini
Headers show
Series image: Reduce #ifdefs and ad-hoc defines in image code | expand

Commit Message

Simon Glass May 3, 2021, 11:10 p.m. UTC
This function should have a comment explaining what it does. Add one.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 include/compiler.h | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Rasmus Villemoes May 4, 2021, 7:01 a.m. UTC | #1
On 04/05/2021 01.10, Simon Glass wrote:
> This function should have a comment explaining what it does. Add one.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
> 
> (no changes since v1)
> 
>  include/compiler.h | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/include/compiler.h b/include/compiler.h
> index 27b9843497a..ec0d600e71a 100644
> --- a/include/compiler.h
> +++ b/include/compiler.h
> @@ -151,6 +151,11 @@ typedef unsigned long int uintptr_t;
>  #define MEM_SUPPORT_64BIT_DATA	0
>  #endif
>  
> +/**
> + * host_build() - check if we are building for the host
> + *
> + * @return true if building for the hose, false if for a target

spello, hose->host
diff mbox series

Patch

diff --git a/include/compiler.h b/include/compiler.h
index 27b9843497a..ec0d600e71a 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -151,6 +151,11 @@  typedef unsigned long int uintptr_t;
 #define MEM_SUPPORT_64BIT_DATA	0
 #endif
 
+/**
+ * host_build() - check if we are building for the host
+ *
+ * @return true if building for the hose, false if for a target
+ */
 static inline bool host_build(void) {
 #ifdef USE_HOSTCC
 	return true;