* [PATCH] include/fastboot.h: add missing types.h include
@ 2024-06-21 1:51 Caleb Connolly
2024-06-21 2:37 ` Sam Protsenko
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Caleb Connolly @ 2024-06-21 1:51 UTC (permalink / raw)
To: Alexey Romanov, Caleb Connolly, Ion Agorria, Mattijs Korpershoek,
Simon Glass, Svyatoslav Ryhel, Tom Rini
Cc: u-boot
Fixes a compile error when building with only the TCP fastboot implementation.
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
---
include/fastboot.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/fastboot.h b/include/fastboot.h
index 2ca1b907a54d..b106d6177493 100644
--- a/include/fastboot.h
+++ b/include/fastboot.h
@@ -11,8 +11,10 @@
*/
#ifndef _FASTBOOT_H_
#define _FASTBOOT_H_
+#include <linux/types.h>
+
#define FASTBOOT_VERSION "0.4"
/*
* Signals u-boot fastboot code to send multiple responses by
--
2.45.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] include/fastboot.h: add missing types.h include
2024-06-21 1:51 [PATCH] include/fastboot.h: add missing types.h include Caleb Connolly
@ 2024-06-21 2:37 ` Sam Protsenko
2024-07-05 12:15 ` Mattijs Korpershoek
2024-07-09 7:17 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Sam Protsenko @ 2024-06-21 2:37 UTC (permalink / raw)
To: Caleb Connolly
Cc: Alexey Romanov, Ion Agorria, Mattijs Korpershoek, Simon Glass,
Svyatoslav Ryhel, Tom Rini, u-boot
On Thu, Jun 20, 2024 at 8:51 PM Caleb Connolly
<caleb.connolly@linaro.org> wrote:
>
> Fixes a compile error when building with only the TCP fastboot implementation.
>
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> ---
Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org>
> include/fastboot.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/fastboot.h b/include/fastboot.h
> index 2ca1b907a54d..b106d6177493 100644
> --- a/include/fastboot.h
> +++ b/include/fastboot.h
> @@ -11,8 +11,10 @@
> */
> #ifndef _FASTBOOT_H_
> #define _FASTBOOT_H_
>
> +#include <linux/types.h>
> +
> #define FASTBOOT_VERSION "0.4"
>
> /*
> * Signals u-boot fastboot code to send multiple responses by
> --
> 2.45.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] include/fastboot.h: add missing types.h include
2024-06-21 1:51 [PATCH] include/fastboot.h: add missing types.h include Caleb Connolly
2024-06-21 2:37 ` Sam Protsenko
@ 2024-07-05 12:15 ` Mattijs Korpershoek
2024-07-09 7:17 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2024-07-05 12:15 UTC (permalink / raw)
To: Caleb Connolly, Alexey Romanov, Caleb Connolly, Ion Agorria,
Simon Glass, Svyatoslav Ryhel, Tom Rini
Cc: u-boot
Hi Caleb,
Thank you for the patch.
On ven., juin 21, 2024 at 03:51, Caleb Connolly <caleb.connolly@linaro.org> wrote:
> Fixes a compile error when building with only the TCP fastboot implementation.
>
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
> ---
> include/fastboot.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/fastboot.h b/include/fastboot.h
> index 2ca1b907a54d..b106d6177493 100644
> --- a/include/fastboot.h
> +++ b/include/fastboot.h
> @@ -11,8 +11,10 @@
> */
> #ifndef _FASTBOOT_H_
> #define _FASTBOOT_H_
>
> +#include <linux/types.h>
> +
> #define FASTBOOT_VERSION "0.4"
>
> /*
> * Signals u-boot fastboot code to send multiple responses by
> --
> 2.45.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] include/fastboot.h: add missing types.h include
2024-06-21 1:51 [PATCH] include/fastboot.h: add missing types.h include Caleb Connolly
2024-06-21 2:37 ` Sam Protsenko
2024-07-05 12:15 ` Mattijs Korpershoek
@ 2024-07-09 7:17 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2024-07-09 7:17 UTC (permalink / raw)
To: Alexey Romanov, Ion Agorria, Simon Glass, Svyatoslav Ryhel,
Tom Rini, Caleb Connolly
Cc: u-boot
Hi,
On Fri, 21 Jun 2024 03:51:02 +0200, Caleb Connolly wrote:
> Fixes a compile error when building with only the TCP fastboot implementation.
>
>
Thanks, Applied to https://source.denx.de/u-boot/custodians/u-boot-dfu (u-boot-dfu)
[1/1] include/fastboot.h: add missing types.h include
https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/b091d3872833a4b8d088ee41348a2d4ff48067cc
--
Mattijs
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-09 7:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-21 1:51 [PATCH] include/fastboot.h: add missing types.h include Caleb Connolly
2024-06-21 2:37 ` Sam Protsenko
2024-07-05 12:15 ` Mattijs Korpershoek
2024-07-09 7:17 ` Mattijs Korpershoek
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.