From 162478cd6d5d2cf9ff8a1a17dd217f094d23ec0d Mon Sep 17 00:00:00 2001 From: Alexandre Abadie <alexandre.abadie@inria.fr> Date: Tue, 5 Sep 2017 11:04:25 +0200 Subject: [PATCH] spelling: s/initialise/initialize/ --- boards/cc2650stk/board.c | 2 +- cpu/mips32r2_common/cpu.c | 2 +- cpu/mips_pic32_common/reset_mod.S | 2 +- dist/tools/goodfet/goodfet.bsl | 2 +- drivers/at86rf2xx/at86rf2xx_netdev.c | 2 +- drivers/kw2xrf/kw2xrf_netdev.c | 2 +- drivers/mrf24j40/mrf24j40_netdev.c | 2 +- sys/posix/pthread/include/pthread_cond.h | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/boards/cc2650stk/board.c b/boards/cc2650stk/board.c index fcbeb8d96e..08fba34453 100644 --- a/boards/cc2650stk/board.c +++ b/boards/cc2650stk/board.c @@ -21,7 +21,7 @@ #include "board.h" /** - * @brief initialise the board + * @brief initialize the board */ void board_init(void) { diff --git a/cpu/mips32r2_common/cpu.c b/cpu/mips32r2_common/cpu.c index 1676212d87..2c1a204aee 100644 --- a/cpu/mips32r2_common/cpu.c +++ b/cpu/mips32r2_common/cpu.c @@ -43,7 +43,7 @@ extern char _edata __attribute__((section("data"))); void software_init_hook(void) { #ifdef FLASH_XIP - /* copy initialised data from its LMA to VMA */ + /* copy initialized data from its LMA to VMA */ memcpy(&_fdata, &_rom_data_copy, (int)&_edata - (int)&_fdata); #endif diff --git a/cpu/mips_pic32_common/reset_mod.S b/cpu/mips_pic32_common/reset_mod.S index 078c2c52de..78b11c496f 100644 --- a/cpu/mips_pic32_common/reset_mod.S +++ b/cpu/mips_pic32_common/reset_mod.S @@ -34,7 +34,7 @@ (from the 2016.05-03 version) with a couple of modifications: #define SKIP_COPY_TO_RAM - prevents the bootloader copying the whole contents - of flash to ram (as we want to XIP from flash), we copy initialised data from + of flash to ram (as we want to XIP from flash), we copy initialized data from flash to ram in 'software_init_hook'. move .org's to before the labels to make the vector labels appear at the vector diff --git a/dist/tools/goodfet/goodfet.bsl b/dist/tools/goodfet/goodfet.bsl index 8947963322..6ae64cb067 100755 --- a/dist/tools/goodfet/goodfet.bsl +++ b/dist/tools/goodfet/goodfet.bsl @@ -296,7 +296,7 @@ class LowLevel: def comInit(self, port): """Tries to open the serial port given and - initialises the port and variables. + initializes the port and variables. The timeout and the number of allowed errors is multiplied by 'aProlongFactor' after transmission of a command to give plenty of time to the micro controller to finish the command. diff --git a/drivers/at86rf2xx/at86rf2xx_netdev.c b/drivers/at86rf2xx/at86rf2xx_netdev.c index 445a31cf1a..886f22168c 100644 --- a/drivers/at86rf2xx/at86rf2xx_netdev.c +++ b/drivers/at86rf2xx/at86rf2xx_netdev.c @@ -69,7 +69,7 @@ static int _init(netdev_t *netdev) { at86rf2xx_t *dev = (at86rf2xx_t *)netdev; - /* initialise GPIOs */ + /* initialize GPIOs */ spi_init_cs(dev->params.spi, dev->params.cs_pin); gpio_init(dev->params.sleep_pin, GPIO_OUT); gpio_clear(dev->params.sleep_pin); diff --git a/drivers/kw2xrf/kw2xrf_netdev.c b/drivers/kw2xrf/kw2xrf_netdev.c index ab5ce07460..5511b5ea22 100644 --- a/drivers/kw2xrf/kw2xrf_netdev.c +++ b/drivers/kw2xrf/kw2xrf_netdev.c @@ -56,7 +56,7 @@ static int _init(netdev_t *netdev) { kw2xrf_t *dev = (kw2xrf_t *)netdev; - /* initialise SPI and GPIOs */ + /* initialize SPI and GPIOs */ if (kw2xrf_init(dev, &_irq_handler)) { LOG_ERROR("[kw2xrf] unable to initialize device\n"); return -1; diff --git a/drivers/mrf24j40/mrf24j40_netdev.c b/drivers/mrf24j40/mrf24j40_netdev.c index a39f86ae74..a910599e27 100644 --- a/drivers/mrf24j40/mrf24j40_netdev.c +++ b/drivers/mrf24j40/mrf24j40_netdev.c @@ -69,7 +69,7 @@ static int _init(netdev_t *netdev) { mrf24j40_t *dev = (mrf24j40_t *)netdev; - /* initialise GPIOs */ + /* initialize GPIOs */ spi_init_cs(dev->params.spi, dev->params.cs_pin); gpio_init(dev->params.reset_pin, GPIO_OUT); gpio_set(dev->params.reset_pin); diff --git a/sys/posix/pthread/include/pthread_cond.h b/sys/posix/pthread/include/pthread_cond.h index 0fb70dbee0..a0cfc444af 100644 --- a/sys/posix/pthread/include/pthread_cond.h +++ b/sys/posix/pthread/include/pthread_cond.h @@ -70,7 +70,7 @@ int pthread_cond_condattr_init(pthread_condattr_t *attr); int pthread_cond_condattr_destroy(pthread_condattr_t *attr); /** - * @brief Get the process-shared attribute in an initialised attributes object referenced by attr + * @brief Get the process-shared attribute in an initialized attributes object referenced by attr * @note NOT USED since RIOT is a single process OS * @param[in] attr pre-allocated condition attribute variable structure. * @param[out] pshared the pre-allocated process-shared variable. @@ -79,7 +79,7 @@ int pthread_cond_condattr_destroy(pthread_condattr_t *attr); int pthread_condattr_getpshared(const pthread_condattr_t *attr, int *pshared); /** - * @brief Set the process-shared attribute in an initialised attributes object referenced by attr + * @brief Set the process-shared attribute in an initialized attributes object referenced by attr * @note NOT USED since RIOT is a single process OS * @param[in, out] attr pre-allocated condition attribute variable structure. * @param[in] pshared pshared the pre-allocated process-shared variable. -- GitLab