X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=common%2FxyzModem.c;h=82039df1f3de6e7b727356f7033e3f5f884f965e;hb=refs%2Fheads%2Fkaro-tx48;hp=a209dfa4af73d134bcf647511ad6cd7fabe9406f;hpb=7d0432c9e4958f97957cee36d4803e5c0b194e20;p=karo-tx-uboot.git diff --git a/common/xyzModem.c b/common/xyzModem.c index a209dfa4af..82039df1f3 100644 --- a/common/xyzModem.c +++ b/common/xyzModem.c @@ -6,39 +6,7 @@ * RedBoot stream handler for xyzModem protocol * *========================================================================== - *####ECOSGPLCOPYRIGHTBEGIN#### - * ------------------------------------------- - * This file is part of eCos, the Embedded Configurable Operating System. - * Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. - * Copyright (C) 2002 Gary Thomas - * - * eCos is free software; you can redistribute it and/or modify it under - * the terms of the GNU General Public License as published by the Free - * Software Foundation; either version 2 or (at your option) any later version. - * - * eCos is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * for more details. - * - * You should have received a copy of the GNU General Public License along - * with eCos; if not, write to the Free Software Foundation, Inc., - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. - * - * As a special exception, if other files instantiate templates or use macros - * or inline functions from this file, or you compile this file and link it - * with other works to produce a work based on this file, this file does not - * by itself cause the resulting work to be covered by the GNU General Public - * License. However the source code for this file must still be made available - * in accordance with section (3) of the GNU General Public License. - * - * This exception does not invalidate any other reasons why a work based on - * this file might be covered by the GNU General Public License. - * - * Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. - * at http: *sources.redhat.com/ecos/ecos-license/ - * ------------------------------------------- - *####ECOSGPLCOPYRIGHTEND#### + * SPDX-License-Identifier: eCos-2.0 *========================================================================== *#####DESCRIPTIONBEGIN#### * @@ -69,7 +37,7 @@ #define BSP 0x08 #define NAK 0x15 #define CAN 0x18 -#define EOF 0x1A /* ^Z for DOS officionados */ +#define EOF 0x1A /* ^Z for DOS aficionados */ #define USE_YMODEM_LENGTH @@ -100,7 +68,7 @@ static struct #ifndef REDBOOT /*SB */ typedef int cyg_int32; -int +static int CYGACC_COMM_IF_GETC_TIMEOUT (char chan, char *c) { #define DELAY 20 @@ -118,7 +86,7 @@ CYGACC_COMM_IF_GETC_TIMEOUT (char chan, char *c) return 0; } -void +static void CYGACC_COMM_IF_PUTC (char x, char y) { putc (y); @@ -165,7 +133,7 @@ _tolower (char c) } /* Parse (scan) a number */ -bool +static bool parse_num (char *s, unsigned long *val, char **es, char *delim) { bool first = true; @@ -235,7 +203,7 @@ parse_num (char *s, unsigned long *val, char **es, char *delim) static int zm_dprintf (char *fmt, ...) { - int cur_console; + int cur_console __attribute__((unused)); va_list args; va_start (args, fmt); @@ -249,9 +217,10 @@ zm_dprintf (char *fmt, ...) #ifdef REDBOOT CYGACC_CALL_IF_SET_CONSOLE_COMM (cur_console); #endif + return 0; } -static void +static inline void zm_flush (void) { } @@ -282,7 +251,7 @@ zm_dprintf (char *fmt, ...) return len; } -static void +static inline void zm_flush (void) { #ifdef REDBOOT @@ -307,19 +276,19 @@ zm_dump_buf (void *buf, int len) static unsigned char zm_buf[2048]; static unsigned char *zm_bp; -static void +static inline void zm_new (void) { zm_bp = zm_buf; } -static void +static inline void zm_save (unsigned char c) { *zm_bp++ = c; } -static void +static inline void zm_dump (int line) { zm_dprintf ("Packet at line: %d\n", line); @@ -544,7 +513,7 @@ xyzModem_stream_open (connection_info_t * info, int *err) xyzModem_CHAR_TIMEOUT); #else /* TODO: CHECK ! */ - int dummy; + int dummy = 0; xyz.__chan = &dummy; #endif xyz.len = 0; @@ -786,7 +755,7 @@ xyzModem_stream_terminate (bool abort, int (*getc) (void)) ZM_DEBUG (zm_dprintf ("Engaging cleanup mode...\n")); /* * Consume any trailing crap left in the inbuffer from - * previous recieved blocks. Since very few files are an exact multiple + * previous received blocks. Since very few files are an exact multiple * of the transfer block size, there will almost always be some gunk here. * If we don't eat it now, RedBoot will think the user typed it. */