public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] spl: spl_fit: add weak prototype for fpga_load
@ 2023-02-27 10:27 Eugen Hristev
  2023-06-09  8:06 ` Eugen Hristev
  0 siblings, 1 reply; 2+ messages in thread
From: Eugen Hristev @ 2023-02-27 10:27 UTC (permalink / raw)
  To: u-boot, sjg; +Cc: Eugen Hristev

In case OPTIMIZE_DEBUG is set, unused code will not be optimized out, hence
the reference to fpga_load will be compiled.
if DM_FPGA and SPL_FPGA are not set, the build will fail with :

aarch64-none-linux-gnu-ld.bfd: common/spl/spl_fit.o: in function `spl_fit_upload_fpga':
u-boot/common/spl/spl_fit.c:595: undefined reference to `fpga_load'

By adding a weak prototype, build is successful.

Signed-off-by: Eugen Hristev <eugen.hristev@collabora.com>
---
 common/spl/spl_fit.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
index c51482b3b659..ca2e337b1ec4 100644
--- a/common/spl/spl_fit.c
+++ b/common/spl/spl_fit.c
@@ -570,6 +570,12 @@ static void warn_deprecated(const char *msg)
 	printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
 }
 
+__weak int fpga_load(int devnum, const void *buf, size_t bsize,
+		     bitstream_type bstype, int flags)
+{
+	return 0;
+}
+
 static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
 			       struct spl_image_info *fpga_image)
 {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] spl: spl_fit: add weak prototype for fpga_load
  2023-02-27 10:27 [PATCH] spl: spl_fit: add weak prototype for fpga_load Eugen Hristev
@ 2023-06-09  8:06 ` Eugen Hristev
  0 siblings, 0 replies; 2+ messages in thread
From: Eugen Hristev @ 2023-06-09  8:06 UTC (permalink / raw)
  To: u-boot, sjg, Michal Simek

On 2/27/23 12:27, Eugen Hristev wrote:
> In case OPTIMIZE_DEBUG is set, unused code will not be optimized out, hence
> the reference to fpga_load will be compiled.
> if DM_FPGA and SPL_FPGA are not set, the build will fail with :
> 
> aarch64-none-linux-gnu-ld.bfd: common/spl/spl_fit.o: in function `spl_fit_upload_fpga':
> u-boot/common/spl/spl_fit.c:595: undefined reference to `fpga_load'
> 
> By adding a weak prototype, build is successful.
> 
> Signed-off-by: Eugen Hristev <eugen.hristev@collabora.com>
> ---
>   common/spl/spl_fit.c | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
> index c51482b3b659..ca2e337b1ec4 100644
> --- a/common/spl/spl_fit.c
> +++ b/common/spl/spl_fit.c
> @@ -570,6 +570,12 @@ static void warn_deprecated(const char *msg)
>   	printf("\tSee doc/uImage.FIT/source_file_format.txt\n");
>   }
>   
> +__weak int fpga_load(int devnum, const void *buf, size_t bsize,
> +		     bitstream_type bstype, int flags)
> +{
> +	return 0;
> +}
> +
>   static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node,
>   			       struct spl_image_info *fpga_image)
>   {

Gentle ping

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-09  8:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27 10:27 [PATCH] spl: spl_fit: add weak prototype for fpga_load Eugen Hristev
2023-06-09  8:06 ` Eugen Hristev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox