tiva: tiva_eeprom.h: Fix nxstyle warnings

arch/arm/src/tiva/tiva_eeprom.h:

    * Fix nxstyle warnings. No functional changes.
This commit is contained in:
Nathan Hartman 2020-09-16 20:09:37 -04:00 committed by Matias N
parent d4f3a7a9ad
commit e916896aa9

View File

@ -53,20 +53,20 @@
* Description: * Description:
* Performs any necessary recovery in case of power failures during write. * Performs any necessary recovery in case of power failures during write.
* *
* This function must be called after tiva_eeprom_enable() and before * This function must be called after tiva_eeprom_enable() and before the
* the EEPROM is accessed. It is used to check for errors in the EEPROM state * EEPROM is accessed. It is used to check for errors in the EEPROM state
* such as from power failure during a previous write operation. The function * such as from power failure during a previous write operation. The
* detects these errors and performs as much recovery as possible. * function detects these errors and performs as much recovery as possible.
* *
* If -ENODEV is returned, the EEPROM was unable to recover its * If -ENODEV is returned, the EEPROM was unable to recover its state. If
* state. If power is stable when this occurs, this indicates a fatal * power is stable when this occurs, this indicates a fatal error and is
* error and is likely an indication that the EEPROM memory has exceeded its * likely an indication that the EEPROM memory has exceeded its specified
* specified lifetime write/erase specification. If the supply voltage is * lifetime write/erase specification. If the supply voltage is unstable
* unstable when this return code is observed, retrying the operation once the * when this return code is observed, retrying the operation once the
* voltage is stabilized may clear the error. * voltage is stabilized may clear the error.
* *
* Failure to call this function after a reset may lead to incorrect operation * Failure to call this function after a reset may lead to incorrect
* or permanent data loss if the EEPROM is later written. * operation or permanent data loss if the EEPROM is later written.
* *
* Returned Value: * Returned Value:
* Returns OK if no errors were detected or -ENODEV if the EEPROM * Returns OK if no errors were detected or -ENODEV if the EEPROM
@ -82,8 +82,8 @@ int tiva_eeprom_initialize(void);
* *
* Description: * Description:
* Create and initialize an MTD device instance. MTD devices are not * Create and initialize an MTD device instance. MTD devices are not
* registered in the file system, but are created as instances that can * registered in the file system, but are created as instances that can be
* be bound to other functions (such as a block or character driver front * bound to other functions (such as a block or character driver front
* end). * end).
* *
****************************************************************************/ ****************************************************************************/