On 6/17/25 11:23, [email protected] wrote:
From: Pieter Van Trappen <[email protected]>
In fpga.c, change debug() calls to puts() for important user
feedback. In zynqpl.c, change 'up to' to 'above' which corrects this
confusing or wrong statement.
Signed-off-by: Pieter Van Trappen <[email protected]>
---
cmd/fpga.c | 20 ++++++++++----------
drivers/fpga/zynqpl.c | 2 +-
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/cmd/fpga.c b/cmd/fpga.c
index 9dc7b63db5d..2c2a63524de 100644
--- a/cmd/fpga.c
+++ b/cmd/fpga.c
@@ -43,7 +43,7 @@ static int do_fpga_check_params(long *dev, long *fpga_data,
size_t *data_size,
debug("%s %d, %d\n", __func__, argc, cmdtp->maxargs);
if (argc != cmdtp->maxargs) {
- debug("fpga: incorrect parameters passed\n");
+ puts("fpga: incorrect parameters passed\n");
I think all of these should be moved to log_err that you should be able to
control verbosity.
Tom: I think this is where you want to go right?
Thanks,
Michal