From 5dc834a72d2395f9063836d2cb5e979002d46964 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 29 Aug 2017 15:12:44 +0200 Subject: [PATCH] doxygen: fix typo on word 'successfully' --- cpu/atmega1281/include/cpu_conf.h | 2 +- cpu/atmega2560/include/cpu_conf.h | 2 +- cpu/atmega328p/include/cpu_conf.h | 2 +- drivers/include/sdcard_spi.h | 6 +++--- pkg/fatfs/fatfs_diskio/native/native_diskio.c | 2 +- pkg/fatfs/fatfs_diskio/sdcard_spi/sdcard_spi_diskio.c | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cpu/atmega1281/include/cpu_conf.h b/cpu/atmega1281/include/cpu_conf.h index 49d8266822..438cbc70ed 100644 --- a/cpu/atmega1281/include/cpu_conf.h +++ b/cpu/atmega1281/include/cpu_conf.h @@ -29,7 +29,7 @@ extern "C" { * @name Kernel configuration * * Since printf seems to get memory allocated by the linker/avr-libc the stack - * size tested sucessfully even with pretty small stacks. + * size tested successfully even with pretty small stacks. * @{ */ #define THREAD_EXTRA_STACKSIZE_PRINTF (128) diff --git a/cpu/atmega2560/include/cpu_conf.h b/cpu/atmega2560/include/cpu_conf.h index acf4439811..1e7f0eac9a 100644 --- a/cpu/atmega2560/include/cpu_conf.h +++ b/cpu/atmega2560/include/cpu_conf.h @@ -30,7 +30,7 @@ extern "C" { * @name Kernel configuration * * Since printf seems to get memory allocated by the linker/avr-libc the stack - * size tested sucessfully even with pretty small stacks.k + * size tested successfully even with pretty small stacks.k * @{ */ #define THREAD_EXTRA_STACKSIZE_PRINTF (128) diff --git a/cpu/atmega328p/include/cpu_conf.h b/cpu/atmega328p/include/cpu_conf.h index 4b35944ce6..91ac74da4d 100644 --- a/cpu/atmega328p/include/cpu_conf.h +++ b/cpu/atmega328p/include/cpu_conf.h @@ -30,7 +30,7 @@ extern "C" { * @name Kernel configuration * * Since printf seems to get memory allocated by the linker/avr-libc the stack - * size tested sucessfully even with pretty small stacks.k + * size tested successfully even with pretty small stacks.k * @{ */ #define THREAD_EXTRA_STACKSIZE_PRINTF (128) diff --git a/drivers/include/sdcard_spi.h b/drivers/include/sdcard_spi.h index bdafa4eeca..558d2276c2 100644 --- a/drivers/include/sdcard_spi.h +++ b/drivers/include/sdcard_spi.h @@ -188,7 +188,7 @@ struct { sdcard_spi_params_t params; /**< parameters for pin and spi config */ spi_clk_t spi_clk; /**< active SPI clock speed */ bool use_block_addr; /**< true if block adressing (vs. byte adressing) is used */ - bool init_done; /**< set to true once the init procedure completed sucessfully */ + bool init_done; /**< set to true once the init procedure completed successfully */ sd_version_t card_type; /**< version of SD-card */ int csd_structure; /**< version of the CSD register structure */ cid_t cid; /**< CID register */ @@ -228,7 +228,7 @@ int sdcard_spi_init(sdcard_spi_t *card, const sdcard_spi_params_t *params); * @param[out] state Contains information about the error state if something went wrong * (if return value is lower than nblocks). * - * @return number of sucessfully read blocks (0 if no block was read). + * @return number of successfully read blocks (0 if no block was read). */ int sdcard_spi_read_blocks(sdcard_spi_t *card, int blockaddr, char *data, int blocksize, int nblocks, sd_rw_response_t *state); @@ -250,7 +250,7 @@ int sdcard_spi_read_blocks(sdcard_spi_t *card, int blockaddr, char *data, int bl * @param[out] state Contains information about the error state if something went wrong * (if return value is lower than nblocks). * - * @return number of sucessfully written blocks (0 if no block was written). + * @return number of successfully written blocks (0 if no block was written). */ int sdcard_spi_write_blocks(sdcard_spi_t *card, int blockaddr, const char *data, int blocksize, int nblocks, sd_rw_response_t *state); diff --git a/pkg/fatfs/fatfs_diskio/native/native_diskio.c b/pkg/fatfs/fatfs_diskio/native/native_diskio.c index a9ad375680..4eca397e32 100644 --- a/pkg/fatfs/fatfs_diskio/native/native_diskio.c +++ b/pkg/fatfs/fatfs_diskio/native/native_diskio.c @@ -86,7 +86,7 @@ DSTATUS disk_status(BYTE pdrv) * @param[in] pdrv drive number to identify the drive * * @return STA_NODISK if no disk exists with the given id - * @return 0 if disk was initialized sucessfully + * @return 0 if disk was initialized successfully * @return STA_NOINIT if disk id exists, but couldn't be initialized */ DSTATUS disk_initialize(BYTE pdrv) diff --git a/pkg/fatfs/fatfs_diskio/sdcard_spi/sdcard_spi_diskio.c b/pkg/fatfs/fatfs_diskio/sdcard_spi/sdcard_spi_diskio.c index 0149ae0f1a..a240c6b9b9 100644 --- a/pkg/fatfs/fatfs_diskio/sdcard_spi/sdcard_spi_diskio.c +++ b/pkg/fatfs/fatfs_diskio/sdcard_spi/sdcard_spi_diskio.c @@ -74,7 +74,7 @@ DSTATUS disk_status(BYTE pdrv) * @param[in] pdrv drive number to identify the drive * * @return STA_NODISK if no disk exists with the given id - * @return 0 if disk was initialized sucessfully + * @return 0 if disk was initialized successfully * @return STA_NOINIT if disk id exists, but couldn't be initialized */ DSTATUS disk_initialize(BYTE pdrv)