[PATCH u-boot-marvell 02/10] tools: kwboot: Remove msg_req_delay
Stefan Roese
sr at denx.de
Fri Mar 4 08:48:44 CET 2022
On 3/2/22 11:49, Pali Rohár wrote:
> Variable msg_req_delay is set but never used. So completely remove it.
>
> Signed-off-by: Pali Rohár <pali at kernel.org>
Reviewed-by: Stefan Roese <sr at denx.de>
Tested-by: Stefan Roese <sr at denx.de>
Thanks,
Stefan
> ---
> tools/kwboot.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/tools/kwboot.c b/tools/kwboot.c
> index 5a7c53ce8929..4dfb1038b4ff 100644
> --- a/tools/kwboot.c
> +++ b/tools/kwboot.c
> @@ -48,11 +48,9 @@ static unsigned char kwboot_msg_debug[] = {
> };
>
> /* Defines known to work on Kirkwood */
> -#define KWBOOT_MSG_REQ_DELAY 10 /* ms */
> #define KWBOOT_MSG_RSP_TIMEO 50 /* ms */
>
> /* Defines known to work on Armada XP */
> -#define KWBOOT_MSG_REQ_DELAY_AXP 1000 /* ms */
> #define KWBOOT_MSG_RSP_TIMEO_AXP 1000 /* ms */
>
> /*
> @@ -285,7 +283,6 @@ static const char kwb_baud_magic[16] = "$baudratechange";
>
> static int kwboot_verbose;
>
> -static int msg_req_delay = KWBOOT_MSG_REQ_DELAY;
> static int msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO;
> static int blk_rsp_timeo = KWBOOT_BLK_RSP_TIMEO;
>
> @@ -1725,7 +1722,6 @@ kwboot_usage(FILE *stream, char *progname)
> " -D <image>: boot <image> without preamble (Dove)\n");
> fprintf(stream, " -d: enter debug mode\n");
> fprintf(stream, " -a: use timings for Armada XP\n");
> - fprintf(stream, " -q <req-delay>: use specific request-delay\n");
> fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
> fprintf(stream,
> " -o <block-timeo>: use specific xmodem block timeout\n");
> @@ -1804,12 +1800,11 @@ main(int argc, char **argv)
> break;
>
> case 'a':
> - msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
> msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
> break;
>
> case 'q':
> - msg_req_delay = atoi(optarg);
> + /* nop, for backward compatibility */
> break;
>
> case 's':
Viele Grüße,
Stefan Roese
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr at denx.de
More information about the U-Boot
mailing list