Hello Joel, On 05/11/2020 20:15, Joel Sherrill wrote: > > > On Thu, Nov 5, 2020, 1:12 PM Christian Mauderer <o...@c-mauderer.de > <mailto:o...@c-mauderer.de>> wrote: > > Hello Joel and Sebastian, > > On 05/11/2020 16:44, Joel Sherrill wrote: > > > > > > On Thu, Nov 5, 2020, 9:26 AM Sebastian Huber > > <sebastian.hu...@embedded-brains.de > <mailto:sebastian.hu...@embedded-brains.de> > > <mailto:sebastian.hu...@embedded-brains.de > <mailto:sebastian.hu...@embedded-brains.de>>> wrote: > > > > Hello, > > > > I review currently the Coding Conventions. Should the 80 > characters > > limit be really a 79 characters limit with the \n as the > invisible 80th > > character? > > > > > > Yes. > > > > As old as this makes me feel, I remember printers which did an > automatic > > linefeed and then the newline one if you hit column 80. So it > really is > > 79 unfortunately. > > I don't think printers with an automatic linefeed are a common use case > for reading the RTEMS source code nowadays. So that maybe isn't the best > reason for using 79 characters. > > > +1 > > > I would suggest to use the same convention that most coding styles use > which seems to be 80 characters: > > https://en.wikipedia.org/wiki/Characters_per_line#In_programming > > At least if there are no more recent examples for tools or editors where > 79 is a benefit. 80 seems just feels a bit more natural. > > > By the way: If we count '\n': Should we count a tab '\t' as a single > character, as 2, as 4 or as 8 ones? > > > We shouldn't have tabs in code we own.
Good point. > > What about the few Unicode > characters that slipped in over the years? > > > We also shouldn't have unicode characters randomly floating around. They > tend to pop up in my experience when people copy from word processors > and get fancy quotes. Those cases should be eliminated Last time I stumbled across a tool that didn't like unicode characters I found about 75 lines in RTEMS with unicode characters. I have been to lazy to fix them back then. Mostly because some of them would have needed some thought about what there should have been (I assume it has been a microsecond in some cases, but still not sure). Attached you can find a patch that should replaces most of them without much thought about the content. If you think it's useful, I can polish it up a bit. Best regards Christian > > > Best regards > > Christian > > > > > > > -- > > embedded brains GmbH > > Sebastian HUBER > > Dornierstr. 4 > > 82178 Puchheim > > Germany > > email: sebastian.hu...@embedded-brains.de > <mailto:sebastian.hu...@embedded-brains.de> > > <mailto:sebastian.hu...@embedded-brains.de > <mailto:sebastian.hu...@embedded-brains.de>> > > Phone: +49-89-18 94 741 - 16 > > Fax: +49-89-18 94 741 - 08 > > PGP: Public key available on request. > > > > embedded brains GmbH > > Registergericht: Amtsgericht München > > Registernummer: HRB 157899 > > Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, > Thomas Dörfler > > Unsere Datenschutzerklärung finden Sie hier: > > https://embedded-brains.de/datenschutzerklaerung/ > > > > _______________________________________________ > > devel mailing list > > devel@rtems.org <mailto:devel@rtems.org> > <mailto:devel@rtems.org <mailto:devel@rtems.org>> > > http://lists.rtems.org/mailman/listinfo/devel > > > > > > _______________________________________________ > > devel mailing list > > devel@rtems.org <mailto:devel@rtems.org> > > http://lists.rtems.org/mailman/listinfo/devel > > >
>From 0c216e723e10acbf1f4c9f28044e19ff408d8fab Mon Sep 17 00:00:00 2001 From: Christian Mauderer <christian.maude...@embedded-brains.de> Date: Thu, 1 Oct 2020 23:15:33 +0200 Subject: [PATCH] Remove special chars. --- bsps/arm/atsam/contrib/libraries/libboard/include/gmii.h | 2 +- .../contrib/libraries/libboard/source/board_memories.c | 8 ++++---- bsps/arm/atsam/contrib/libraries/libchip/source/aes.c | 2 +- bsps/arm/atsam/contrib/libraries/libchip/source/sdramc.c | 2 +- bsps/arm/lm3s69xx/console/console-config.c | 2 +- bsps/arm/lm3s69xx/console/uart.c | 2 +- bsps/arm/lm3s69xx/i2c/ssi.c | 2 +- bsps/arm/lm3s69xx/include/bsp/io.h | 2 +- bsps/arm/lm3s69xx/include/bsp/irq.h | 2 +- bsps/arm/lm3s69xx/include/bsp/lm3s69xx.h | 2 +- bsps/arm/lm3s69xx/include/bsp/ssi.h | 2 +- bsps/arm/lm3s69xx/include/bsp/syscon.h | 2 +- bsps/arm/lm3s69xx/start/bspstart.c | 4 ++-- bsps/arm/lm3s69xx/start/io.c | 2 +- bsps/arm/lm3s69xx/start/syscon.c | 2 +- bsps/arm/rtl22xx/console/uart.c | 2 +- bsps/powerpc/include/mpc83xx/mpc83xx.h | 2 +- bsps/shared/grlib/can/occan.c | 4 ++-- bsps/shared/grlib/spw/grspw.c | 8 ++++---- cpukit/libfs/src/jffs2/include/linux/jffs2.h | 4 ++-- cpukit/libfs/src/jffs2/src/acl.h | 2 +- cpukit/libfs/src/jffs2/src/build.c | 4 ++-- cpukit/libfs/src/jffs2/src/compr.c | 8 ++++---- cpukit/libfs/src/jffs2/src/compr.h | 4 ++-- cpukit/libfs/src/jffs2/src/compr_rtime.c | 4 ++-- cpukit/libfs/src/jffs2/src/compr_rubin.c | 4 ++-- cpukit/libfs/src/jffs2/src/compr_zlib.c | 4 ++-- cpukit/libfs/src/jffs2/src/debug.c | 4 ++-- cpukit/libfs/src/jffs2/src/debug.h | 4 ++-- cpukit/libfs/src/jffs2/src/dir-rtems.c | 8 ++++---- cpukit/libfs/src/jffs2/src/erase.c | 4 ++-- cpukit/libfs/src/jffs2/src/fs-rtems.c | 8 ++++---- cpukit/libfs/src/jffs2/src/gc.c | 4 ++-- cpukit/libfs/src/jffs2/src/jffs2_fs_i.h | 4 ++-- cpukit/libfs/src/jffs2/src/jffs2_fs_sb.h | 4 ++-- cpukit/libfs/src/jffs2/src/nodelist.c | 2 +- cpukit/libfs/src/jffs2/src/nodelist.h | 2 +- cpukit/libfs/src/jffs2/src/nodemgmt.c | 2 +- cpukit/libfs/src/jffs2/src/os-rtems.h | 4 ++-- cpukit/libfs/src/jffs2/src/read.c | 2 +- cpukit/libfs/src/jffs2/src/readinode.c | 2 +- cpukit/libfs/src/jffs2/src/scan.c | 2 +- cpukit/libfs/src/jffs2/src/summary.h | 2 +- cpukit/libfs/src/jffs2/src/write.c | 2 +- cpukit/libfs/src/jffs2/src/xattr.h | 2 +- 45 files changed, 75 insertions(+), 75 deletions(-) diff --git a/bsps/arm/atsam/contrib/libraries/libboard/include/gmii.h b/bsps/arm/atsam/contrib/libraries/libboard/include/gmii.h index e346143452..71b7148b11 100644 --- a/bsps/arm/atsam/contrib/libraries/libboard/include/gmii.h +++ b/bsps/arm/atsam/contrib/libraries/libboard/include/gmii.h @@ -52,7 +52,7 @@ #define GMII_ECR 0x18 // Expanded Control Register #define GMII_ICSR 0x1B // Interrupt Control/Status Register #define GMII_FC 0x1C // Function Control -#define GMII_LCSR 0x1D // LinkMD® Control/Status Register +#define GMII_LCSR 0x1D // LinkMD Control/Status Register #define GMII_PC1R 0x1E // PHY Control 1 Register #define GMII_PC2R 0x1F // PHY Control 2 Register diff --git a/bsps/arm/atsam/contrib/libraries/libboard/source/board_memories.c b/bsps/arm/atsam/contrib/libraries/libboard/source/board_memories.c index e2f04caa8c..2df20545d0 100644 --- a/bsps/arm/atsam/contrib/libraries/libboard/source/board_memories.c +++ b/bsps/arm/atsam/contrib/libraries/libboard/source/board_memories.c @@ -196,7 +196,7 @@ void BOARD_ConfigureSdram(void) SDRAMC->SDRAMC_MDR = BOARD_Sdram_Config.sdramc_mdr; #endif /* __rtems__ */ - /* 4. A minimum pause of 200 ¦Ìs is provided to precede any signal toggle.*/ + /* 4. A minimum pause of 200 ?s is provided to precede any signal toggle.*/ for (i = 0; i < 100000; i++); /* 5. (1)A NOP command is issued to the SDRAM devices. The application must @@ -277,10 +277,10 @@ void BOARD_ConfigureSdram(void) /* 11. Write the refresh rate into the count field in the SDRAMC Refresh Timer register. (Refresh rate = delay between refresh cycles). - The SDRAM device requires a refresh every 15.625 ¦Ìs or 7.81 ¦Ìs. + The SDRAM device requires a refresh every 15.625 ?s or 7.81 ?s. With a 100 MHz frequency, the Refresh Timer Counter Register must be set - with the value 1562(15.625 ¦Ìs x 100 MHz) or 781(7.81 ¦Ìs x 100 MHz). */ - // For IS42S16100E, 2048 refresh cycle every 32ms, every 15.625 ¦Ìs + with the value 1562(15.625 ?s x 100 MHz) or 781(7.81 ?s x 100 MHz). */ + // For IS42S16100E, 2048 refresh cycle every 32ms, every 15.625 ?s /* ((32 x 10(^-3))/2048) x150 x (10^6) */ #ifndef __rtems__ SDRAMC->SDRAMC_TR = 1562; diff --git a/bsps/arm/atsam/contrib/libraries/libchip/source/aes.c b/bsps/arm/atsam/contrib/libraries/libchip/source/aes.c index 010e7cf8d1..0fc14e9db9 100644 --- a/bsps/arm/atsam/contrib/libraries/libchip/source/aes.c +++ b/bsps/arm/atsam/contrib/libraries/libchip/source/aes.c @@ -249,7 +249,7 @@ void AES_SetGcmHash(uint32_t *hash) /** * \brief Get The four 32-bit Tag which contain the final 128-bit GCM - * Authentication tag ¡°T¡± when GCM processing is complete. + * Authentication tag ??T?? when GCM processing is complete. * \param tag point to the word of the tag. */ void AES_GetGcmTag(uint32_t *tag) diff --git a/bsps/arm/atsam/contrib/libraries/libchip/source/sdramc.c b/bsps/arm/atsam/contrib/libraries/libchip/source/sdramc.c index ab5f2d8ec8..9da11d76bc 100644 --- a/bsps/arm/atsam/contrib/libraries/libchip/source/sdramc.c +++ b/bsps/arm/atsam/contrib/libraries/libchip/source/sdramc.c @@ -128,7 +128,7 @@ extern void SDRAMC_Configure(SSdramc_Memory *pMemory, SDRAMC->SDRAMC_MDR = SDRAMC_MDR_MD_SDRAM; /* Step 4 */ - /* A minimum pause of 200 ¦Ìs is provided to precede any signal toggle. + /* A minimum pause of 200 ?s is provided to precede any signal toggle. (6 core cycles per iteration) */ for (dw = 0; dw < ((dwClockFrequency / 1000000) * 200 / 6); dw++); diff --git a/bsps/arm/lm3s69xx/console/console-config.c b/bsps/arm/lm3s69xx/console/console-config.c index b702f0cd66..bce7a624aa 100644 --- a/bsps/arm/lm3s69xx/console/console-config.c +++ b/bsps/arm/lm3s69xx/console/console-config.c @@ -1,5 +1,5 @@ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * Copyright (c) 2011 Sebastian Huber. All rights reserved. * diff --git a/bsps/arm/lm3s69xx/console/uart.c b/bsps/arm/lm3s69xx/console/uart.c index 67a85f4e96..f9e55dd362 100644 --- a/bsps/arm/lm3s69xx/console/uart.c +++ b/bsps/arm/lm3s69xx/console/uart.c @@ -1,5 +1,5 @@ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * Copyright (c) 2011 Sebastian Huber. All rights reserved. * diff --git a/bsps/arm/lm3s69xx/i2c/ssi.c b/bsps/arm/lm3s69xx/i2c/ssi.c index 9469c611f0..3b4e8fca9c 100644 --- a/bsps/arm/lm3s69xx/i2c/ssi.c +++ b/bsps/arm/lm3s69xx/i2c/ssi.c @@ -1,5 +1,5 @@ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/lm3s69xx/include/bsp/io.h b/bsps/arm/lm3s69xx/include/bsp/io.h index 3e3846e1c6..6dea463a56 100644 --- a/bsps/arm/lm3s69xx/include/bsp/io.h +++ b/bsps/arm/lm3s69xx/include/bsp/io.h @@ -7,7 +7,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/lm3s69xx/include/bsp/irq.h b/bsps/arm/lm3s69xx/include/bsp/irq.h index dd49728881..ca7a462f7f 100644 --- a/bsps/arm/lm3s69xx/include/bsp/irq.h +++ b/bsps/arm/lm3s69xx/include/bsp/irq.h @@ -7,7 +7,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * Copyright (c) 2011 Sebastian Huber. All rights reserved. * diff --git a/bsps/arm/lm3s69xx/include/bsp/lm3s69xx.h b/bsps/arm/lm3s69xx/include/bsp/lm3s69xx.h index 623b6ca45e..0a4a80760d 100644 --- a/bsps/arm/lm3s69xx/include/bsp/lm3s69xx.h +++ b/bsps/arm/lm3s69xx/include/bsp/lm3s69xx.h @@ -7,7 +7,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * Copyright (c) 2011 Sebastian Huber. All rights reserved. * diff --git a/bsps/arm/lm3s69xx/include/bsp/ssi.h b/bsps/arm/lm3s69xx/include/bsp/ssi.h index 66d5302655..7463a19825 100644 --- a/bsps/arm/lm3s69xx/include/bsp/ssi.h +++ b/bsps/arm/lm3s69xx/include/bsp/ssi.h @@ -7,7 +7,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/lm3s69xx/include/bsp/syscon.h b/bsps/arm/lm3s69xx/include/bsp/syscon.h index 2904138f4d..67ff69c50e 100644 --- a/bsps/arm/lm3s69xx/include/bsp/syscon.h +++ b/bsps/arm/lm3s69xx/include/bsp/syscon.h @@ -7,7 +7,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/lm3s69xx/start/bspstart.c b/bsps/arm/lm3s69xx/start/bspstart.c index da3029e58c..e9a94f36cc 100644 --- a/bsps/arm/lm3s69xx/start/bspstart.c +++ b/bsps/arm/lm3s69xx/start/bspstart.c @@ -3,7 +3,7 @@ */ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at @@ -39,7 +39,7 @@ static void init_main_osc(void) syscon->rcc2 = rcc2; /* - As per a note in Stellaris® LM4F120H5QR Microcontroller Data + As per a note in Stellaris LM4F120H5QR Microcontroller Data Sheet on page 219: "When transitioning the system clock configuration to use the MOSC as the fundamental clock source, the MOSCDIS bit must be set prior to reselecting the MOSC or an diff --git a/bsps/arm/lm3s69xx/start/io.c b/bsps/arm/lm3s69xx/start/io.c index b476e7b6dd..0f41f137dd 100644 --- a/bsps/arm/lm3s69xx/start/io.c +++ b/bsps/arm/lm3s69xx/start/io.c @@ -1,5 +1,5 @@ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/lm3s69xx/start/syscon.c b/bsps/arm/lm3s69xx/start/syscon.c index 1f5a1a3596..60064c3102 100644 --- a/bsps/arm/lm3s69xx/start/syscon.c +++ b/bsps/arm/lm3s69xx/start/syscon.c @@ -1,5 +1,5 @@ /* - * Copyright © 2013 Eugeniy Meshcheryakov <eu...@debian.org> + * Copyright (c) 2013 Eugeniy Meshcheryakov <eu...@debian.org> * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/arm/rtl22xx/console/uart.c b/bsps/arm/rtl22xx/console/uart.c index 2952e74508..f9edc787ae 100644 --- a/bsps/arm/rtl22xx/console/uart.c +++ b/bsps/arm/rtl22xx/console/uart.c @@ -262,7 +262,7 @@ static int _BSP_get_char(void) BSP_polling_getchar_function_type BSP_poll_char = _BSP_get_char; /* - * init USART 0¡£8 bit, 1 Stop,No checkout, BPS115200 + * init USART 0?8 bit, 1 Stop,No checkout, BPS115200 */ void UART0_Ini(void) { diff --git a/bsps/powerpc/include/mpc83xx/mpc83xx.h b/bsps/powerpc/include/mpc83xx/mpc83xx.h index f48a5ce675..51e83a1def 100644 --- a/bsps/powerpc/include/mpc83xx/mpc83xx.h +++ b/bsps/powerpc/include/mpc83xx/mpc83xx.h @@ -668,7 +668,7 @@ typedef struct m83xxUSB_DRRegisters_ { volatile uint32_t cdpr1; /* 0x3_1140 Crypto-channel 1 current descriptor pointer register R 0x0000_0000_0000_0000 14.6.1.3/14-90 */ volatile uint32_t */ 0x3_1180--0x3_11BF - DBn /* volatile; uint32_t ff1, */ /* 0x3_1148 Crypto-channel 1 fetch FIFO address register W 0x0000_0000_0000_0000 14.6.1.4/14-90 Crypto-channel 1 descriptor buffers [07] R 0x0000_0000_0000_0000 14.6.1.5/14-91 */ + DBn /* volatile; uint32_t ff1, */ /* 0x3_1148 Crypto-channel 1 fetch FIFO address register W 0x0000_0000_0000_0000 14.6.1.4/14-90 Crypto-channel 1 descriptor buffers [0?7] R 0x0000_0000_0000_0000 14.6.1.5/14-91 */ /* Channel 2-4: FIXME: same layout as channel 1*/ /* Data Encryption Standard Execution Unit (DEU) */ volatile uint32_t deumr; /* 0x3_2000 DEU mode register R/W 0x0000_0000_0000_0000 14.5.2.1/14-35 */ diff --git a/bsps/shared/grlib/can/occan.c b/bsps/shared/grlib/can/occan.c index 59b4f234f6..29d71db3ae 100644 --- a/bsps/shared/grlib/can/occan.c +++ b/bsps/shared/grlib/can/occan.c @@ -855,8 +855,8 @@ static int pelican_start(occan_priv *priv){ #endif /* core already in reset mode, - * ¤ Exit reset mode - * ¤ Enter Single/Dual mode filtering. + * * Exit reset mode + * * Enter Single/Dual mode filtering. */ WRITE_REG(priv, &priv->regs->mode, (priv->single_mode << 3)); diff --git a/bsps/shared/grlib/spw/grspw.c b/bsps/shared/grlib/spw/grspw.c index 2e1e8e90e9..f4ae4ce2e3 100644 --- a/bsps/shared/grlib/spw/grspw.c +++ b/bsps/shared/grlib/spw/grspw.c @@ -1475,10 +1475,10 @@ static rtems_device_driver grspw_control( /* Get timeout from userspace * timeout: - * ¤ -1 = Default timeout - * ¤ less than -1 = forever - * ¤ 0 = no wait, proceed if link is up - * ¤ positive = specifies number of system clock ticks that + * * -1 = Default timeout + * * less than -1 = forever + * * 0 = no wait, proceed if link is up + * * positive = specifies number of system clock ticks that * startup will wait for link to enter ready mode. */ timeout = (int)ioarg->buffer; diff --git a/cpukit/libfs/src/jffs2/include/linux/jffs2.h b/cpukit/libfs/src/jffs2/include/linux/jffs2.h index a18b719f49..202cb46b8d 100644 --- a/cpukit/libfs/src/jffs2/include/linux/jffs2.h +++ b/cpukit/libfs/src/jffs2/include/linux/jffs2.h @@ -1,8 +1,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/acl.h b/cpukit/libfs/src/jffs2/src/acl.h index 2e2b5745c3..1114691c70 100644 --- a/cpukit/libfs/src/jffs2/src/acl.h +++ b/cpukit/libfs/src/jffs2/src/acl.h @@ -1,7 +1,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2006 NEC Corporation + * Copyright (c) 2006 NEC Corporation * * Created by KaiGai Kohei <kai...@ak.jp.nec.com> * diff --git a/cpukit/libfs/src/jffs2/src/build.c b/cpukit/libfs/src/jffs2/src/build.c index d35bc83bbb..ce9e258404 100644 --- a/cpukit/libfs/src/jffs2/src/build.c +++ b/cpukit/libfs/src/jffs2/src/build.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/compr.c b/cpukit/libfs/src/jffs2/src/compr.c index a9e821a6a1..e9d5667116 100644 --- a/cpukit/libfs/src/jffs2/src/compr.c +++ b/cpukit/libfs/src/jffs2/src/compr.c @@ -3,11 +3,11 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> - * Copyright © 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, * University of Szeged, Hungary - * Copyright © 2013 embedded brains GmbH <rt...@embedded-brains.de> + * Copyright (c) 2013 embedded brains GmbH <rt...@embedded-brains.de> * * Created by Arjan van de Ven <ar...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/compr.h b/cpukit/libfs/src/jffs2/src/compr.h index e6226e7258..cdf2c5c85a 100644 --- a/cpukit/libfs/src/jffs2/src/compr.h +++ b/cpukit/libfs/src/jffs2/src/compr.h @@ -1,9 +1,9 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, + * Copyright (c) 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, * University of Szeged, Hungary - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * For licensing information, see the file 'LICENCE' in this directory. * diff --git a/cpukit/libfs/src/jffs2/src/compr_rtime.c b/cpukit/libfs/src/jffs2/src/compr_rtime.c index c8313ed234..c434c0b74f 100644 --- a/cpukit/libfs/src/jffs2/src/compr_rtime.c +++ b/cpukit/libfs/src/jffs2/src/compr_rtime.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by Arjan van de Ven <arj...@redhat.com> * diff --git a/cpukit/libfs/src/jffs2/src/compr_rubin.c b/cpukit/libfs/src/jffs2/src/compr_rubin.c index 91a1f354f5..d47f293eaa 100644 --- a/cpukit/libfs/src/jffs2/src/compr_rubin.c +++ b/cpukit/libfs/src/jffs2/src/compr_rubin.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by Arjan van de Ven <arj...@redhat.com> * diff --git a/cpukit/libfs/src/jffs2/src/compr_zlib.c b/cpukit/libfs/src/jffs2/src/compr_zlib.c index 6f5d0d3956..cd967e0a57 100644 --- a/cpukit/libfs/src/jffs2/src/compr_zlib.c +++ b/cpukit/libfs/src/jffs2/src/compr_zlib.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/debug.c b/cpukit/libfs/src/jffs2/src/debug.c index 4ddaa42400..676e97006e 100644 --- a/cpukit/libfs/src/jffs2/src/debug.c +++ b/cpukit/libfs/src/jffs2/src/debug.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/debug.h b/cpukit/libfs/src/jffs2/src/debug.h index 6c905b3854..c752cee76f 100644 --- a/cpukit/libfs/src/jffs2/src/debug.h +++ b/cpukit/libfs/src/jffs2/src/debug.h @@ -1,8 +1,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/dir-rtems.c b/cpukit/libfs/src/jffs2/src/dir-rtems.c index 9fa70bcec4..a10c6a5b1c 100644 --- a/cpukit/libfs/src/jffs2/src/dir-rtems.c +++ b/cpukit/libfs/src/jffs2/src/dir-rtems.c @@ -3,10 +3,10 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2003 Free Software Foundation, Inc. - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> - * Copyright © 2013 embedded brains GmbH <rt...@embedded-brains.de> + * Copyright (c) 2001-2003 Free Software Foundation, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2013 embedded brains GmbH <rt...@embedded-brains.de> * * Created by David Woodhouse <dw...@cambridge.redhat.com> * diff --git a/cpukit/libfs/src/jffs2/src/erase.c b/cpukit/libfs/src/jffs2/src/erase.c index 9ffffafaea..b5611323d5 100644 --- a/cpukit/libfs/src/jffs2/src/erase.c +++ b/cpukit/libfs/src/jffs2/src/erase.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/fs-rtems.c b/cpukit/libfs/src/jffs2/src/fs-rtems.c index aae208ccef..d35ec0b40d 100644 --- a/cpukit/libfs/src/jffs2/src/fs-rtems.c +++ b/cpukit/libfs/src/jffs2/src/fs-rtems.c @@ -3,10 +3,10 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2003 Free Software Foundation, Inc. - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> - * Copyright © 2013, 2016 embedded brains GmbH <rt...@embedded-brains.de> + * Copyright (c) 2001-2003 Free Software Foundation, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2013, 2016 embedded brains GmbH <rt...@embedded-brains.de> * * Created by Dominic Ostrowski <dominic.ostrow...@3glab.com> * Contributors: David Woodhouse, Nick Garnett, Richard Panton. diff --git a/cpukit/libfs/src/jffs2/src/gc.c b/cpukit/libfs/src/jffs2/src/gc.c index f557075ab8..a790200e9a 100644 --- a/cpukit/libfs/src/jffs2/src/gc.c +++ b/cpukit/libfs/src/jffs2/src/gc.c @@ -3,8 +3,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/jffs2_fs_i.h b/cpukit/libfs/src/jffs2/src/jffs2_fs_i.h index 6b6050e9eb..c1cb67aa0e 100644 --- a/cpukit/libfs/src/jffs2/src/jffs2_fs_i.h +++ b/cpukit/libfs/src/jffs2/src/jffs2_fs_i.h @@ -1,8 +1,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/jffs2_fs_sb.h b/cpukit/libfs/src/jffs2/src/jffs2_fs_sb.h index 778275f48a..8076ab707e 100644 --- a/cpukit/libfs/src/jffs2/src/jffs2_fs_sb.h +++ b/cpukit/libfs/src/jffs2/src/jffs2_fs_sb.h @@ -1,8 +1,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. - * Copyright © 2004-2010 David Woodhouse <dw...@infradead.org> + * Copyright (c) 2001-2007 Red Hat, Inc. + * Copyright (c) 2004-2010 David Woodhouse <dw...@infradead.org> * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/nodelist.c b/cpukit/libfs/src/jffs2/src/nodelist.c index ee44024c92..7ee04e962c 100644 --- a/cpukit/libfs/src/jffs2/src/nodelist.c +++ b/cpukit/libfs/src/jffs2/src/nodelist.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/nodelist.h b/cpukit/libfs/src/jffs2/src/nodelist.h index 143f60dbcb..403e1a4487 100644 --- a/cpukit/libfs/src/jffs2/src/nodelist.h +++ b/cpukit/libfs/src/jffs2/src/nodelist.h @@ -1,7 +1,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/nodemgmt.c b/cpukit/libfs/src/jffs2/src/nodemgmt.c index 8c181288b9..74fe986b7c 100644 --- a/cpukit/libfs/src/jffs2/src/nodemgmt.c +++ b/cpukit/libfs/src/jffs2/src/nodemgmt.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/os-rtems.h b/cpukit/libfs/src/jffs2/src/os-rtems.h index db1be61e67..3337d40fb2 100644 --- a/cpukit/libfs/src/jffs2/src/os-rtems.h +++ b/cpukit/libfs/src/jffs2/src/os-rtems.h @@ -1,8 +1,8 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2002-2003 Free Software Foundation, Inc. - * Copyright © 2013 embedded brains GmbH <rt...@embedded-brains.de> + * Copyright (c) 2002-2003 Free Software Foundation, Inc. + * Copyright (c) 2013 embedded brains GmbH <rt...@embedded-brains.de> * * Created by David Woodhouse <dw...@cambridge.redhat.com> * diff --git a/cpukit/libfs/src/jffs2/src/read.c b/cpukit/libfs/src/jffs2/src/read.c index 516ba43d95..a793c96dcd 100644 --- a/cpukit/libfs/src/jffs2/src/read.c +++ b/cpukit/libfs/src/jffs2/src/read.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/readinode.c b/cpukit/libfs/src/jffs2/src/readinode.c index e6c9452c03..e8c5b285c0 100644 --- a/cpukit/libfs/src/jffs2/src/readinode.c +++ b/cpukit/libfs/src/jffs2/src/readinode.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/scan.c b/cpukit/libfs/src/jffs2/src/scan.c index 177a0cdd3f..924c2e738b 100644 --- a/cpukit/libfs/src/jffs2/src/scan.c +++ b/cpukit/libfs/src/jffs2/src/scan.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/summary.h b/cpukit/libfs/src/jffs2/src/summary.h index 60207a2ae9..13aa6cb7ee 100644 --- a/cpukit/libfs/src/jffs2/src/summary.h +++ b/cpukit/libfs/src/jffs2/src/summary.h @@ -1,7 +1,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, + * Copyright (c) 2004 Ferenc Havasi <hav...@inf.u-szeged.hu>, * Zoltan Sogor <w...@inf.u-szeged.hu>, * Patrik Kluba <pa...@halom.u-szeged.hu>, * University of Szeged, Hungary diff --git a/cpukit/libfs/src/jffs2/src/write.c b/cpukit/libfs/src/jffs2/src/write.c index 3d49ec05ca..5440caee20 100644 --- a/cpukit/libfs/src/jffs2/src/write.c +++ b/cpukit/libfs/src/jffs2/src/write.c @@ -3,7 +3,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2001-2007 Red Hat, Inc. + * Copyright (c) 2001-2007 Red Hat, Inc. * * Created by David Woodhouse <dw...@infradead.org> * diff --git a/cpukit/libfs/src/jffs2/src/xattr.h b/cpukit/libfs/src/jffs2/src/xattr.h index 720007b2fd..9af05a547c 100644 --- a/cpukit/libfs/src/jffs2/src/xattr.h +++ b/cpukit/libfs/src/jffs2/src/xattr.h @@ -1,7 +1,7 @@ /* * JFFS2 -- Journalling Flash File System, Version 2. * - * Copyright © 2006 NEC Corporation + * Copyright (c) 2006 NEC Corporation * * Created by KaiGai Kohei <kai...@ak.jp.nec.com> * -- 2.26.2
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel