drivers/mtd/mtd_progmem.c: Small typo fix.

This commit is contained in:
Matouš Pokorný 2019-11-07 07:46:22 -06:00 committed by Gregory Nutt
parent d86a9c6374
commit 4d59d6cbcc
2 changed files with 4 additions and 4 deletions

View File

@ -124,10 +124,10 @@ static struct progmem_dev_s g_progmem =
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: progmem_erase * Name: progmem_log2
* *
* Description: * Description:
* Erase several blocks, each of the size previously reported. * Check block size is exact powers of two.
* *
****************************************************************************/ ****************************************************************************/

View File

@ -61,13 +61,13 @@
* CFGDIOC_GETCONFIG - Get a specified Config Data item. * CFGDIOC_GETCONFIG - Get a specified Config Data item.
* *
* ioctl argument: Pointer to a config_data_s structure to receive the * ioctl argument: Pointer to a config_data_s structure to receive the
* config data. All fields of the strucure must be * config data. All fields of the structure must be
* specified (i.e. id, instance, pointer and len). * specified (i.e. id, instance, pointer and len).
* *
* CFGDIOC_SETCONFIG - Set a specified Config Data Item * CFGDIOC_SETCONFIG - Set a specified Config Data Item
* *
* ioctl argument: Pointer to a config_data_s structure to receive the * ioctl argument: Pointer to a config_data_s structure to receive the
* config data. All fields of the strucure must be * config data. All fields of the structure must be
* specified (i.e. id, instance, pointer and len). * specified (i.e. id, instance, pointer and len).
*/ */