Cosmetic cleanups in various files
authorPiotr Dymacz <pepe2k@gmail.com>
Sat, 20 Aug 2016 20:18:12 +0000 (22:18 +0200)
committerPiotr Dymacz <pepe2k@gmail.com>
Sat, 20 Aug 2016 20:18:12 +0000 (22:18 +0200)
32 files changed:
u-boot/common/devices.c
u-boot/common/dlmalloc.c
u-boot/common/env_flash.c
u-boot/common/environment.c
u-boot/common/lists.c
u-boot/common/main.c
u-boot/drivers/netconsole.c
u-boot/include/asm-mips/addrspace.h
u-boot/include/asm-mips/cachectl.h
u-boot/include/asm-mips/cacheops.h
u-boot/include/asm-mips/u-boot.h
u-boot/include/common.h
u-boot/include/configs/ap121.h
u-boot/include/configs/ap143.h
u-boot/include/configs/ar7240.h
u-boot/include/configs/db12x.h
u-boot/include/devices.h
u-boot/include/environment.h
u-boot/include/exports.h
u-boot/include/image.h
u-boot/include/lcd.h
u-boot/include/linux/stat.h
u-boot/include/lists.h
u-boot/include/malloc.h
u-boot/include/net.h
u-boot/include/pci.h
u-boot/include/rtc.h
u-boot/include/tplink_image.h
u-boot/include/version.h
u-boot/net/bootp.c
u-boot/tools/envcrc.c
u-boot/tools/mkimage.c

index c167072efad57b9ea6c23204dccdc6742c2913ae..4e9bc3ea7c78bc20684076deb0b3c425babc2dbc 100644 (file)
@@ -111,7 +111,7 @@ int device_deregister(char *devname){
 
        return(0);
 }
-#endif /* CFG_DEVICE_DEREGISTER */
+#endif /* CFG_DEVICE_DEREGISTER */
 
 int devices_init(void){
        ulong relocation_offset = gd->reloc_off;
index 20c206913c63d2fcd1588fc0f0ae3baaae10940a..a54a43ae180a323f7516948f3269267456d1c80d 100644 (file)
 
 */
 
-\f
-
-
 /* Preliminaries */
 
 #ifndef __STD_C
@@ -944,9 +941,9 @@ void malloc_stats (void);
 static void malloc_update_mallinfo ();
 void malloc_stats();
 #endif
-#endif /* 0 */
+#endif /* 0 */
 
-#endif /* 0 */                 /* Moved to malloc.h */
+#endif /* 0 */                 /* Moved to malloc.h */
 #include <common.h>
 
 DECLARE_GLOBAL_DATA_PTR;
@@ -1141,8 +1138,6 @@ gAllocatedSize))
 
 #endif
 
-\f
-
 /*
   Type declarations
 */
@@ -1281,7 +1276,7 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
        serviced via calls to mmap, and then later released via munmap.
 
 */
-\f
+
 /*  sizes, alignments */
 
 #define SIZE_SZ                (sizeof(INTERNAL_SIZE_T))
@@ -1305,9 +1300,6 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 
 #define aligned_OK(m)    (((unsigned long)((m)) & (MALLOC_ALIGN_MASK)) == 0)
 
-
-\f
-
 /*
   Physical chunk operations
 */
@@ -1340,9 +1332,6 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 
 #define chunk_at_offset(p, s)  ((mchunkptr)(((char*)(p)) + (s)))
 
-
-\f
-
 /*
   Dealing with use bits
 */
@@ -1379,9 +1368,6 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 #define clear_inuse_bit_at_offset(p, s)\
  (((mchunkptr)(((char*)(p)) + (s)))->size &= ~(PREV_INUSE))
 
-
-\f
-
 /*
   Dealing with size fields
 */
@@ -1402,10 +1388,6 @@ nextchunk-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
 
 #define set_foot(p, s)   (((mchunkptr)((char*)(p) + (s)))->prev_size = (s))
 
-
-\f
-
-
 /*
    Bins
 
@@ -1501,7 +1483,6 @@ void malloc_bin_reloc (void)
                *p++ += gd->reloc_off;
        }
 }
-\f
 
 /* field-extraction macros */
 
@@ -1537,8 +1518,6 @@ void malloc_bin_reloc (void)
 
 #define is_small_request(nb) (nb < MAX_SMALLBIN_SIZE - SMALLBIN_WIDTH)
 
-\f
-
 /*
     To help compensate for the large number of bins, a one-level index
     structure is used for bin-by-bin searching.  `binblocks' is a
@@ -1559,10 +1538,6 @@ void malloc_bin_reloc (void)
 #define mark_binblock(ii)   (binblocks |= idx2binblock(ii))
 #define clear_binblock(ii)  (binblocks &= ~(idx2binblock(ii)))
 
-
-\f
-
-
 /*  Other static bookkeeping data */
 
 /* variables holding tunable values */
@@ -1591,15 +1566,13 @@ static struct mallinfo current_mallinfo = {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 
 #if 0
 static unsigned int n_mmaps = 0;
-#endif /* 0 */
+#endif /* 0 */
 static unsigned long mmapped_mem = 0;
 #if HAVE_MMAP
 static unsigned int max_n_mmaps = 0;
 static unsigned long max_mmapped_mem = 0;
 #endif
 
-\f
-
 /*
   Debugging support
 */
@@ -1623,7 +1596,7 @@ static void do_check_chunk(p) mchunkptr p;
 {
 #if 0  /* causes warnings because assert() is off */
   INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
-#endif /* 0 */
+#endif /* 0 */
 
   /* No checkable chunk is mmapped */
   assert(!chunk_is_mmapped(p));
@@ -1647,7 +1620,7 @@ static void do_check_free_chunk(p) mchunkptr p;
   INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
 #if 0  /* causes warnings because assert() is off */
   mchunkptr next = chunk_at_offset(p, sz);
-#endif /* 0 */
+#endif /* 0 */
 
   do_check_chunk(p);
 
@@ -1714,7 +1687,7 @@ static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;
 #if 0  /* causes warnings because assert() is off */
   INTERNAL_SIZE_T sz = p->size & ~PREV_INUSE;
   long room = sz - s;
-#endif /* 0 */
+#endif /* 0 */
 
   do_check_inuse_chunk(p);
 
@@ -1745,8 +1718,6 @@ static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;
 #define check_malloced_chunk(P,N)
 #endif
 
-\f
-
 /*
   Macro-based internal utilities
 */
@@ -1816,10 +1787,6 @@ static void do_check_malloced_chunk(p, s) mchunkptr p; INTERNAL_SIZE_T s;
 #define clear_last_remainder \
   (last_remainder->fd = last_remainder->bk = last_remainder)
 
-
-\f
-
-
 /* Routines dealing with mmap(). */
 
 #if HAVE_MMAP
@@ -1947,9 +1914,6 @@ static mchunkptr mremap_chunk(p, new_size) mchunkptr p; size_t new_size;
 
 #endif /* HAVE_MMAP */
 
-
-\f
-
 /*
   Extend the top-most chunk by obtaining memory from system.
   Main interface to sbrk (but see also malloc_trim).
@@ -2064,9 +2028,6 @@ static void malloc_extend_top(nb) INTERNAL_SIZE_T nb;
   assert(((unsigned long)((char*)top + top_size) & (pagesz - 1)) == 0);
 }
 
-
-\f
-
 /* Main public routines */
 
 
@@ -2365,9 +2326,6 @@ Void_t* mALLOc(bytes) size_t bytes;
 
 }
 
-
-\f
-
 /*
 
   free() algorithm :
@@ -2482,10 +2440,6 @@ void fREe(mem) Void_t* mem;
     frontlink(p, sz, idx, bck, fwd);
 }
 
-
-\f
-
-
 /*
 
   Realloc algorithm:
@@ -2719,9 +2673,6 @@ Void_t* rEALLOc(oldmem, bytes) Void_t* oldmem; size_t bytes;
   return chunk2mem(newp);
 }
 
-
-\f
-
 /*
 
   memalign algorithm:
@@ -2838,9 +2789,6 @@ Void_t* mEMALIGn(alignment, bytes) size_t alignment; size_t bytes;
 
 }
 
-\f
-
-
 /*
     valloc just invokes memalign with alignment argument equal
     to the page size of the system (or as near to this as can
@@ -2945,8 +2893,6 @@ void cfree(mem) Void_t *mem;
 }
 #endif
 
-\f
-
 /*
 
     Malloc_trim gives memory back to the system (via negative
@@ -3026,8 +2972,6 @@ int malloc_trim(pad) size_t pad;
   }
 }
 
-\f
-
 /*
   malloc_usable_size:
 
@@ -3061,9 +3005,6 @@ size_t malloc_usable_size(mem) Void_t* mem;
   }
 }
 
-
-\f
-
 /* Utility to update current_mallinfo for malloc_stats and mallinfo() */
 
 #if 0
@@ -3104,9 +3045,7 @@ static void malloc_update_mallinfo()
   current_mallinfo.keepcost = chunksize(top);
 
 }
-#endif /* 0 */
-
-\f
+#endif /* 0 */
 
 /*
 
@@ -3138,7 +3077,7 @@ void malloc_stats()
          (unsigned int)max_n_mmaps);
 #endif
 }
-#endif /* 0 */
+#endif /* 0 */
 
 /*
   mallinfo returns a copy of updated current mallinfo.
@@ -3150,10 +3089,7 @@ struct mallinfo mALLINFo()
   malloc_update_mallinfo();
   return current_mallinfo;
 }
-#endif /* 0 */
-
-
-\f
+#endif /* 0 */
 
 /*
   mallopt:
index 9bf996f9d78d5d16cab8bbe8fb86d8c5408a51c8..54913d252fb32bb110c79283275f5808f8b2d083 100644 (file)
@@ -236,7 +236,7 @@ int saveenv(void){
 #else
        flash_sect_addr = (ulong)flash_addr;
        len = CFG_ENV_SIZE;
-#endif /* CFG_ENV_SECT_SIZE */
+#endif /* CFG_ENV_SECT_SIZE */
 
        end_addr = flash_sect_addr + len - 1;
 
index b8b8a8e535e69e1c0982a526788e8f46615762f5..7e4060e8ac8df2d735418983c8cc541060d1d50a 100644 (file)
@@ -195,7 +195,7 @@ env_t redundand_environment __PPCENV__ = {
        "\0"
        }
 };
-#endif /* CFG_ENV_ADDR_REDUND */
+#endif /* CFG_ENV_ADDR_REDUND */
 
 /*
  * These will end up in the .text section
index 39732774c2882b61b02046d476eb78864c314075..b6d976299a7ddb362569d1b566b11d81f2c2fa7e 100644 (file)
@@ -138,7 +138,7 @@ int BinSearch ( void *array, int numElements, int elementSize,
        return -mid - 1;
 }
 
-#endif /* CFG_ALL_LIST_FUNCTIONS */
+#endif /* CFG_ALL_LIST_FUNCTIONS */
 
 /*******************************************************************************/
 
@@ -191,7 +191,7 @@ void ListCompact (list_t list)
        (*list)->listSize = (*list)->numItems;
 }
 
-#endif /* CFG_ALL_LIST_FUNCTIONS */
+#endif /* CFG_ALL_LIST_FUNCTIONS */
 
 /*******************************/
 
@@ -336,7 +336,7 @@ int ListAppend (list_t list1, list_t list2)
        return 1;
 }
 
-#endif /* CFG_ALL_LIST_FUNCTIONS */
+#endif /* CFG_ALL_LIST_FUNCTIONS */
 
 /*******************************/
 
@@ -461,7 +461,7 @@ void ListGetItem (list_t list, void *itemDestination, int itemPosition)
        ListGetItems (list, itemDestination, itemPosition, 1);
 }
 
-#endif /* CFG_ALL_LIST_FUNCTIONS */
+#endif /* CFG_ALL_LIST_FUNCTIONS */
 
 /*******************************/
 
@@ -502,7 +502,7 @@ void ListRemoveItems (list_t list, void *itemsDestination,
 
        (*list)->numItems -= numItemsToRemove;
 }
-#endif /* CFG_ALL_LIST_FUNCTIONS || CFG_DEVICE_DEREGISTER */
+#endif /* CFG_ALL_LIST_FUNCTIONS || CFG_DEVICE_DEREGISTER */
 
 /*******************************/
 #if 0
index f73f5cc6d382312d73d1b1329af4fd71b86469b0..a0b3e14dbaa73e410aee74abd11df4d658644a50 100644 (file)
@@ -119,7 +119,7 @@ static __inline__ int abortboot(int bootdelay){
 
        return(abort);
 }
-#endif /* CONFIG_BOOTDELAY >= 0  */
+#endif /* CONFIG_BOOTDELAY >= 0  */
 
 /****************************************************************************/
 
@@ -246,7 +246,7 @@ void main_loop(void){
                printf("\n## Error: failed to execute 'bootcmd'!\nHTTP server is starting for firmware update...\n\n");
                NetLoopHttpd();
        }
-#endif /* CONFIG_BOOTDELAY */
+#endif /* CONFIG_BOOTDELAY */
 
        /*
         * Main Loop for Monitor Command Processing
index f24ac546ec1e9d4729b95c4a637bef7fb55c1b84..025ecd2de31c21da4ffb9f09334665f84e74fb28 100644 (file)
@@ -295,4 +295,4 @@ int drv_nc_init(void){
        return((rc == 0) ? 1 : rc);
 }
 
-#endif /* CONFIG_NETCONSOLE */
+#endif /* CONFIG_NETCONSOLE */
index 0c22947b7310bba3d199cb207ba760c0fa2cfd1a..4acabdfd5575227b557175b94879da84438d83d2 100644 (file)
@@ -45,7 +45,7 @@
  */
 #ifndef __ASSEMBLY__
 #define UNCACHED_SDRAM(a)   KSEG1ADDR((a))
-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLY__ */
 /*
  * Map an address to a certain kernel segment
  */
index 9cc2b87215c430f1c62ff9e2dd9c6765767f4584..6988fbbfbe48e1b77d79978cb3854de5c2cd891a 100644 (file)
@@ -21,4 +21,4 @@
 #define CACHEABLE      0       /* make pages cacheable */
 #define UNCACHEABLE    1       /* make pages uncacheable */
 
-#endif /* __ASM_MIPS_CACHECTL */
+#endif /* __ASM_MIPS_CACHECTL */
index 66b0b361f03e17ef1661bab21fd331a3c8312aa4..c1b584d4f874a1c2fab6b2aaf4ab90dd7f51366e 100644 (file)
@@ -44,4 +44,4 @@
 #define Hit_Set_Virtual_SI     0x1e
 #define Hit_Set_Virtual_SD     0x1f
 
-#endif /* __ASM_MIPS_CACHEOPS_H */
+#endif /* __ASM_MIPS_CACHEOPS_H */
index c08e035ebe4f07071e81ae9e2164f583738cde82..c784057b37f6e407dd9259a00dbcfe782ebd4846 100644 (file)
@@ -48,4 +48,4 @@ typedef struct bd_info {
 #define bi_env_data bi_env->data
 #define bi_env_crc  bi_env->crc
 
-#endif /* _U_BOOT_H_ */
+#endif /* _U_BOOT_H_ */
index a634ea56425867cb92dc60d53bca2033414b8317..3a69e21b447918ab0e078d891a055b29e98cf3ef 100644 (file)
@@ -106,7 +106,7 @@ typedef volatile unsigned char      vu_char;
 #else
 #define debug(fmt,args...)
 #define debugX(level,fmt,args...)
-#endif /* DEBUG */
+#endif /* DEBUG */
 
 typedef void (interrupt_handler_t)(void *);
 
@@ -598,4 +598,4 @@ int pcmcia_init (void);
 #define CONFIG_BOOTP_MASK      CONFIG_BOOTP_DEFAULT
 #endif
 
-#endif /* __COMMON_H_ */
+#endif /* __COMMON_H_ */
index 444715be185a88c4514d4049acfaee11c88281a6..19f8be8fcdd36bdf8ab82a2dceb60c91c2e6afe3 100644 (file)
@@ -2,8 +2,8 @@
  * This file contains the configuration parameters for the AP121 (AR9331) board.
  */
 
-#ifndef __CONFIG_H
-#define __CONFIG_H
+#ifndef __AP121_CONFIG_H
+#define __AP121_CONFIG_H
 
 #include <configs/ar7240.h>
 #include <config.h>
                                                                                                         0x0000FFE0)
 #endif
 
-#endif /* __CONFIG_H */
+#endif /* __AP121_CONFIG_H */
index 21a8edeee8ec74185b341c32aed25fc1da6c2858..7350dcfce2017edb3fd31797e3f363a242bd8725 100644 (file)
                                                                                                         0x0000FFE0)
 #endif
 
-#endif /* __AP143_CONFIG_H */
+#endif /* __AP143_CONFIG_H */
index 8f7d91018a4a033acb3eca28137d3c2bbf7ebb06..6911bc64ce0916f76b74dec60dced93c4f8bc42c 100644 (file)
@@ -2,8 +2,8 @@
  * This file contains the configuration parameters for the dbau1x00 board.
  */
 
-#ifndef __AR7240_H
-#define __AR7240_H
+#ifndef __AR7240_CONFIG_H
+#define __AR7240_CONFIG_H
 
 #ifndef CONFIG_BOOTDELAY
 #define CONFIG_BOOTDELAY       1                                                                       /* autoboot after x seconds */
@@ -45,4 +45,4 @@
 #define CFG_ICACHE_SIZE                                65536
 #define CFG_CACHELINE_SIZE                     32
 
-#endif /* __CONFIG_H */
+#endif /* __AR7240_CONFIG_H */
index cdfc9684174a6c041a4e30901dc7036625cd31e3..abfb824e114864492416d8253fe1e52ca564c533 100644 (file)
@@ -2,8 +2,8 @@
  * This file contains the configuration parameters for the DB12x (AR9344) board.
  */
 
-#ifndef __CONFIG_H
-#define __CONFIG_H
+#ifndef __DB12X_CONFIG_H
+#define __DB12X_CONFIG_H
 
 #include <configs/ar7240.h>
 #include <config.h>
                                                                                                         0x0000FFE0)
 #endif
 
-#endif /* __CONFIG_H */
+#endif /* __DB12X_CONFIG_H */
index 2d9e282e38f16248bc8d3e465e0b3e651eece30d..6c4a847f73c6112f7eb259659b969ab13318bd9b 100644 (file)
@@ -112,4 +112,4 @@ int drv_usbtty_init (void);
 int    drv_nc_init (void);
 #endif
 
-#endif /* _DEVICES_H_ */
+#endif /* _DEVICES_H_ */
index 8aa659034fcae894a72a4f1f21c497eccb5db0d7..87da30493ed55ed0e4437a078e2c66e054483cb3 100644 (file)
@@ -73,7 +73,7 @@
        #if defined(CFG_ENV_ADDR_REDUND) || defined(CFG_ENV_OFFSET_REDUND)
                #define CFG_REDUNDAND_ENVIRONMENT       1
        #endif
-#endif /* CFG_ENV_IS_IN_FLASH */
+#endif /* CFG_ENV_IS_IN_FLASH */
 
 #if defined(CFG_ENV_IS_IN_NAND)
 # ifndef CFG_ENV_OFFSET
@@ -105,4 +105,4 @@ typedef     struct environment_s {
        unsigned char   data[ENV_SIZE]; /* Environment data             */
 } env_t;
 
-#endif /* _ENVIRONMENT_H_ */
+#endif /* _ENVIRONMENT_H_ */
index 95984495df79cc5c320773d378faa20c25626943..1c8794022da5fdc396f2fba29c312ba3bc1098bc 100644 (file)
@@ -2,44 +2,47 @@
 #define __EXPORTS_H__
 
 #ifndef __ASSEMBLY__
-
 #include <common.h>
 
-/* These are declarations of exported functions available in C code */
-unsigned long  get_version(void);
-int                            getc(void);
-int                            tstc(void);
-void                   putc(const char);
-void                   puts(const char*);
-void                   printf(const char* fmt, ...);
-void                   install_hdlr(int, interrupt_handler_t*, void*);
-void                   free_hdlr(int);
-void                   *malloc(size_t);
-void                   free(void*);
-void                   udelay(unsigned long);
-unsigned long  get_timer(unsigned long);
-void                   do_reset(void);
-void                   app_startup(char **);
-
-#endif    /* ifndef __ASSEMBLY__ */
+/*
+ * These are declarations of exported
+ * functions available in C code
+ */
+unsigned long get_timer(unsigned long);
+unsigned long get_version(void);
+
+void app_startup(char **);
+void do_reset(void);
+void free(void*);
+void free_hdlr(int);
+void install_hdlr(int, interrupt_handler_t*, void*);
+void printf(const char* fmt, ...);
+void putc(const char);
+void puts(const char*);
+void udelay(unsigned long);
+void *malloc(size_t);
+
+int getc(void);
+int tstc(void);
+#endif /* ifndef __ASSEMBLY__ */
 
 enum {
-#define EXPORT_FUNC(x) XF_ ## x ,
-EXPORT_FUNC(get_version)
-EXPORT_FUNC(getc)
-EXPORT_FUNC(tstc)
-EXPORT_FUNC(putc)
-EXPORT_FUNC(puts)
-EXPORT_FUNC(printf)
-EXPORT_FUNC(install_hdlr)
-EXPORT_FUNC(free_hdlr)
-EXPORT_FUNC(malloc)
-EXPORT_FUNC(free)
-EXPORT_FUNC(udelay)
-EXPORT_FUNC(get_timer)
-EXPORT_FUNC(do_reset)
-#undef EXPORT_FUNC
-XF_MAX
+       #define EXPORT_FUNC(x) XF_ ## x ,
+       EXPORT_FUNC(get_version)
+       EXPORT_FUNC(getc)
+       EXPORT_FUNC(tstc)
+       EXPORT_FUNC(putc)
+       EXPORT_FUNC(puts)
+       EXPORT_FUNC(printf)
+       EXPORT_FUNC(install_hdlr)
+       EXPORT_FUNC(free_hdlr)
+       EXPORT_FUNC(malloc)
+       EXPORT_FUNC(free)
+       EXPORT_FUNC(udelay)
+       EXPORT_FUNC(get_timer)
+       EXPORT_FUNC(do_reset)
+       #undef EXPORT_FUNC
+       XF_MAX
 };
 
 #define XF_VERSION     2
@@ -48,4 +51,4 @@ XF_MAX
 extern gd_t *global_data;
 #endif
 
-#endif /* __EXPORTS_H__ */
+#endif /* __EXPORTS_H__ */
index ad86284136ac8e2bd9499c686ea3e2624b5b2e94..49f5383a2dac30ba331f130f8cd295d0768ba1aa 100644 (file)
 /*
  * Operating System Codes
  */
-#define IH_OS_INVALID          0       /* Invalid OS   */
-#define IH_OS_OPENBSD          1       /* OpenBSD              */
-#define IH_OS_NETBSD           2       /* NetBSD               */
-#define IH_OS_FREEBSD          3       /* FreeBSD              */
-#define IH_OS_4_4BSD           4       /* 4.4BSD               */
-#define IH_OS_LINUX                    5       /* Linux                */
-#define IH_OS_SVR4                     6       /* SVR4                 */
-#define IH_OS_ESIX                     7       /* Esix                 */
-#define IH_OS_SOLARIS          8       /* Solaris              */
-#define IH_OS_IRIX                     9       /* Irix                 */
-#define IH_OS_SCO                      10      /* SCO                  */
-#define IH_OS_DELL                     11      /* Dell                 */
-#define IH_OS_NCR                      12      /* NCR                  */
-#define IH_OS_LYNXOS           13      /* LynxOS               */
-#define IH_OS_VXWORKS          14      /* VxWorks              */
-#define IH_OS_PSOS                     15      /* pSOS                 */
-#define IH_OS_QNX                      16      /* QNX                  */
-#define IH_OS_U_BOOT           17      /* Firmware             */
-#define IH_OS_RTEMS                    18      /* RTEMS                */
-#define IH_OS_ARTOS                    19      /* ARTOS                */
-#define IH_OS_UNITY                    20      /* Unity OS             */
+#define IH_OS_INVALID  0       /* Invalid OS */
+#define IH_OS_OPENBSD  1       /* OpenBSD    */
+#define IH_OS_NETBSD   2       /* NetBSD     */
+#define IH_OS_FREEBSD  3       /* FreeBSD    */
+#define IH_OS_4_4BSD   4       /* 4.4BSD     */
+#define IH_OS_LINUX    5       /* Linux      */
+#define IH_OS_SVR4     6       /* SVR4       */
+#define IH_OS_ESIX     7       /* Esix       */
+#define IH_OS_SOLARIS  8       /* Solaris    */
+#define IH_OS_IRIX     9       /* Irix       */
+#define IH_OS_SCO      10      /* SCO        */
+#define IH_OS_DELL     11      /* Dell       */
+#define IH_OS_NCR      12      /* NCR        */
+#define IH_OS_LYNXOS   13      /* LynxOS     */
+#define IH_OS_VXWORKS  14      /* VxWorks    */
+#define IH_OS_PSOS     15      /* pSOS       */
+#define IH_OS_QNX      16      /* QNX        */
+#define IH_OS_U_BOOT   17      /* Firmware   */
+#define IH_OS_RTEMS    18      /* RTEMS      */
+#define IH_OS_ARTOS    19      /* ARTOS      */
+#define IH_OS_UNITY    20      /* Unity OS   */
 
 /*
  * CPU Architecture Codes (supported by Linux)
  */
-#define IH_CPU_INVALID         0       /* Invalid CPU  */
-#define IH_CPU_ALPHA           1       /* Alpha                */
-#define IH_CPU_ARM                     2       /* ARM                  */
-#define IH_CPU_I386                    3       /* Intel x86    */
-#define IH_CPU_IA64                    4       /* IA64                 */
-#define IH_CPU_MIPS                    5       /* MIPS                 */
+#define IH_CPU_INVALID         0       /* Invalid CPU  */
+#define IH_CPU_ALPHA           1       /* Alpha        */
+#define IH_CPU_ARM             2       /* ARM          */
+#define IH_CPU_I386            3       /* Intel x86    */
+#define IH_CPU_IA64            4       /* IA64         */
+#define IH_CPU_MIPS            5       /* MIPS         */
 #define IH_CPU_MIPS64          6       /* MIPS  64 Bit */
-#define IH_CPU_PPC                     7       /* PowerPC              */
-#define IH_CPU_S390                    8       /* IBM S390             */
-#define IH_CPU_SH                      9       /* SuperH               */
-#define IH_CPU_SPARC           10      /* Sparc                */
+#define IH_CPU_PPC             7       /* PowerPC      */
+#define IH_CPU_S390            8       /* IBM S390     */
+#define IH_CPU_SH              9       /* SuperH       */
+#define IH_CPU_SPARC           10      /* Sparc        */
 #define IH_CPU_SPARC64         11      /* Sparc 64 Bit */
-#define IH_CPU_M68K                    12      /* M68K                 */
-#define IH_CPU_NIOS                    13      /* Nios-32              */
+#define IH_CPU_M68K            12      /* M68K         */
+#define IH_CPU_NIOS            13      /* Nios-32      */
 #define IH_CPU_MICROBLAZE      14      /* MicroBlaze   */
-#define IH_CPU_NIOS2           15      /* Nios-II              */
-#define IH_CPU_BLACKFIN                16      /* Blackfin             */
+#define IH_CPU_NIOS2           15      /* Nios-II      */
+#define IH_CPU_BLACKFIN                16      /* Blackfin     */
 
 /*
  * Image Types
  *     as command interpreter (=> Shell Scripts).
  */
 
-#define IH_TYPE_INVALID                0       /* Invalid Image                                */
-#define IH_TYPE_STANDALONE     1       /* Standalone Program                   */
-#define IH_TYPE_KERNEL         2       /* OS Kernel Image                              */
-#define IH_TYPE_RAMDISK                3       /* RAMDisk Image                                */
-#define IH_TYPE_MULTI          4       /* Multi-File Image                             */
-#define IH_TYPE_FIRMWARE       5       /* Firmware Image                               */
-#define IH_TYPE_SCRIPT         6       /* Script file                                  */
-#define IH_TYPE_FILESYSTEM     7       /* Filesystem Image (any type)  */
+#define IH_TYPE_INVALID                0       /* Invalid Image               */
+#define IH_TYPE_STANDALONE     1       /* Standalone Program          */
+#define IH_TYPE_KERNEL         2       /* OS Kernel Image             */
+#define IH_TYPE_RAMDISK                3       /* RAMDisk Image               */
+#define IH_TYPE_MULTI          4       /* Multi-File Image            */
+#define IH_TYPE_FIRMWARE       5       /* Firmware Image              */
+#define IH_TYPE_SCRIPT         6       /* Script file                 */
+#define IH_TYPE_FILESYSTEM     7       /* Filesystem Image (any type) */
 
 /*
  * Compression Types
  */
-#define IH_COMP_NONE           0       /*  No   Compression Used       */
-#define IH_COMP_GZIP           1       /* gzip  Compression Used       */
-#define IH_COMP_BZIP2          2       /* bzip2 Compression Used       */
-#define IH_COMP_LZMA           3       /* lzma  Compression Used       */
+#define IH_COMP_NONE   0       /* no    compression */
+#define IH_COMP_GZIP   1       /* gzip  compression */
+#define IH_COMP_BZIP2  2       /* bzip2 compression */
+#define IH_COMP_LZMA   3       /* lzma  compression */
 
-#define IH_MAGIC       0x27051956      /* Image Magic Number           */
-#define IH_NMLEN       32                      /* Image Name Length            */
+#define IH_MAGIC       0x27051956      /* Image Magic Number */
+#define IH_NMLEN       32              /* Image Name Length  */
 
 /*
- * all data in network byte order (aka natural aka bigendian)
+ * All data in network byte order (aka natural aka bigendian)
  */
-
 typedef struct image_header {
-       uint32_t        ih_magic;                       /* Image Header Magic Number    */
-       uint32_t        ih_hcrc;                        /* Image Header CRC Checksum    */
-       uint32_t        ih_time;                        /* Image Creation Timestamp             */
-       uint32_t        ih_size;                        /* Image Data Size                              */
-       uint32_t        ih_load;                        /* Data  Load  Address                  */
-       uint32_t        ih_ep;                          /* Entry Point Address                  */
-       uint32_t        ih_dcrc;                        /* Image Data CRC Checksum              */
-       uint8_t         ih_os;                          /* Operating System                             */
-       uint8_t         ih_arch;                        /* CPU architecture                             */
-       uint8_t         ih_type;                        /* Image Type                                   */
-       uint8_t         ih_comp;                        /* Compression Type                             */
-       uint8_t         ih_name[IH_NMLEN];      /* Image Name                                   */
+       uint32_t ih_magic;              /* Image Header Magic Number */
+       uint32_t ih_hcrc;               /* Image Header CRC Checksum */
+       uint32_t ih_time;               /* Image Creation Timestamp  */
+       uint32_t ih_size;               /* Image Data Size           */
+       uint32_t ih_load;               /* Data  Load  Address       */
+       uint32_t ih_ep;                 /* Entry Point Address       */
+       uint32_t ih_dcrc;               /* Image Data CRC Checksum   */
+       uint8_t  ih_os;                 /* Operating System          */
+       uint8_t  ih_arch;               /* CPU architecture          */
+       uint8_t  ih_type;               /* Image Type                */
+       uint8_t  ih_comp;               /* Compression Type          */
+       uint8_t  ih_name[IH_NMLEN];     /* Image Name                */
 } image_header_t;
 
-#endif /* __IMAGE_H__ */
+#endif /* __IMAGE_H__ */
index 35c8a078b97cf7fd7b8f05ab7716117d0edbb10f..1b4c344a05cab030d514a09f6674aeed5f22ae9d 100644 (file)
@@ -280,4 +280,4 @@ void        lcd_printf      (const char *fmt, ...);
 
 /************************************************************************/
 
-#endif /* _LCD_H_ */
+#endif /* _LCD_H_ */
index f9422cb1fafcf2d2bb24e2b36ece2fe39335bda2..3296bcc074b8a4f09f753ee86f822953dd62f660 100644 (file)
@@ -65,7 +65,7 @@ struct stat {
        unsigned long   __unused5;
 };
 
-#endif /* __PPC__ */
+#endif /* __PPC__ */
 
 #if defined (__ARM__) || defined (__I386__) || defined (__M68K__) || defined (__blackfin__)
 
@@ -92,7 +92,7 @@ struct stat {
        unsigned long  __unused5;
 };
 
-#endif /* __ARM__ */
+#endif /* __ARM__ */
 
 #if defined (__MIPS__)
 
@@ -123,7 +123,7 @@ struct stat {
        long            st_pad4[14];
 };
 
-#endif /* __MIPS__ */
+#endif /* __MIPS__ */
 
 #ifdef __cplusplus
 }
index 804b5cdca70e75e6bff76f24620f262e6d1b9814..4c560cba07f16c07ccad4f8290a82f985ce95ee2 100644 (file)
@@ -74,4 +74,4 @@ int     ListInsertAfterItem(list_t list, void *ptrToItem, void *ptrToItemToInser
 int     ListInsertBeforeItem(list_t list, void *ptrToItem, void *ptrToItemToInsertBefore, CompareFunction compareFunction);
 #endif /* 0 */
 
-#endif /* _LISTS_H_ */
+#endif /* _LISTS_H_ */
index 47154b0783f9dc173d9c0ec8183d916c3246e5c6..922e5aafd8f6577bd187f40d87bf2f9a12e203bb 100644 (file)
 #include <linux/stddef.h>      /* for size_t */
 #else
 #include <sys/types.h>
-#endif /* __STD_C */
+#endif /* __STD_C */
 
 #ifdef __cplusplus
 extern "C" {
index fe6ba561d951601295c8c37648392a958b110bab..ffecb9b6faf3cad8573d31956a715de2f7569989 100644 (file)
@@ -19,7 +19,7 @@
 #   define CONFIG_NET_MULTI
 #  endif
 # endif
-#endif /* CONFIG_8xx */
+#endif /* CONFIG_8xx */
 
 #if defined(CONFIG_MPC5xxx)
 # if !defined(CONFIG_NET_MULTI)
@@ -27,7 +27,7 @@
 #   define CONFIG_NET_MULTI
 #  endif
 # endif
-#endif /* CONFIG_MPC5xxx */
+#endif /* CONFIG_MPC5xxx */
 
 #if !defined(CONFIG_NET_MULTI) && defined(CONFIG_CPM2)
 #include <config.h>
index 6e09b167b0914a26fe6b01ddbc2296fbbc5e5ad8..c032678255ddf88ad1a8a751f8e2466afd135dbf 100644 (file)
@@ -373,4 +373,4 @@ struct pci_controller {
        int current_busno;\r
 };\r
 \r
-#endif /* _PCI_H */\r
+#endif /* _PCI_H */\r
index a742077379eadfba1473f9456514dfd0885b625e..d5802f8dc409ea942d5822cdb0100f208a7f4233 100644 (file)
@@ -60,4 +60,4 @@ void GregorianDay(struct rtc_time *);
 void to_tm(int, struct rtc_time *);
 unsigned long mktime(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
 
-#endif /* _RTC_H_ */
+#endif /* _RTC_H_ */
index 2d4e9f0682c2afdf059da5eea576f0395988c1ab..1553a2b4382a9dadae6ea9eaadff138b97a942ff 100644 (file)
@@ -42,4 +42,4 @@ typedef struct tplink_image_header {          /* ofs (size): what                     */
        uint8_t  ih_pad[354];                   /* 0x9E (354): padding, not used...     */
 } tplink_image_header_t;
 
-#endif /* __TPLINK_IMAGE_H__ */
+#endif /* __TPLINK_IMAGE_H__ */
index b56d2e9900b8309c66d3f265ab73b03ebd46137e..8c1f1112407006aa24c417ad8d438959f6d7f5fe 100644 (file)
@@ -26,4 +26,4 @@
 
 #include "version_autogenerated.h"
 
-#endif /* __VERSION_H__ */
+#endif /* __VERSION_H__ */
index 1dac5f56c4721b7cd509f03263fb9536b228fc39..aec4dd1122d5b13c29873368a171965fc9a30f2a 100644 (file)
@@ -686,7 +686,7 @@ void BootpRequest(void){
        for(reg = 0; reg < sum; reg++){
                udelay(1000); /* Wait 1ms */
        }
-#endif /* CONFIG_BOOTP_RANDOM_DELAY */
+#endif /* CONFIG_BOOTP_RANDOM_DELAY */
 
        printf("Sending DHCP discover... %d\n", ++BootpTry);
 
@@ -988,7 +988,7 @@ static void DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len){
 
 #ifdef CFG_BOOTFILE_PREFIX
                        if(strncmp(bp->bp_file, CFG_BOOTFILE_PREFIX, strlen(CFG_BOOTFILE_PREFIX)) == 0 ){
-#endif /* CFG_BOOTFILE_PREFIX */
+#endif /* CFG_BOOTFILE_PREFIX */
 
 #ifdef DEBUG
                                puts("TRANSITIONING TO REQUESTING STATE\n");
@@ -1007,7 +1007,7 @@ static void DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len){
 
 #ifdef CFG_BOOTFILE_PREFIX
                        }
-#endif /* CFG_BOOTFILE_PREFIX */
+#endif /* CFG_BOOTFILE_PREFIX */
 
                        return;
                        break;
index 179e44b2c0e665e571f174745e73f8d7113a69b3..12e0e863bfa431daeb07b2f59229a4c8299e5e4d 100644 (file)
@@ -56,7 +56,7 @@
 # if defined(CFG_ENV_ADDR_REDUND) || defined(CFG_ENV_OFFSET_REDUND)
 #  define CFG_REDUNDAND_ENVIRONMENT    1
 # endif
-#endif /* CFG_ENV_IS_IN_FLASH */
+#endif /* CFG_ENV_IS_IN_FLASH */
 
 #ifdef CFG_REDUNDAND_ENVIRONMENT
 # define ENV_HEADER_SIZE       (sizeof(unsigned long) + 1)
@@ -70,7 +70,7 @@
 #ifdef ENV_IS_EMBEDDED
 extern unsigned int env_size;
 extern unsigned char environment;
-#endif /* ENV_IS_EMBEDDED */
+#endif /* ENV_IS_EMBEDDED */
 
 int main (int argc, char **argv)
 {
index 205db4855f3888aa4eff4b5f53c19fe6a7cb79d6..6c775ed8d687d40d0204e2e49d3bc13788b7eca4 100644 (file)
@@ -53,7 +53,7 @@ typedef               unsigned int    uint32_t;
 
 #define     ntohl(a)   SWAP_LONG(a)
 #define     htonl(a)   SWAP_LONG(a)
-#endif /* __WIN32__ */
+#endif /* __WIN32__ */
 
 #ifndef        O_BINARY                /* should be define'd on __WIN32__ */
 #define O_BINARY       0