style/typo: fix few style and typo issues

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2022-03-18 15:21:41 +01:00 committed by Abdelatif Guettouche
parent 841bcf84a0
commit 6472a698b6
4 changed files with 19 additions and 36 deletions

View File

@ -542,7 +542,7 @@ static int pic32mz_ioctl(FAR struct timer_lowerhalf_s *lower, int cmd,
}
/****************************************************************************
* Name: pic32mz_ioctl
* Name: pic32mz_maxtimeout
*
* Description:
* Get the maximum supported timeout value

View File

@ -128,8 +128,7 @@ int board_app_initialize(uintptr_t arg)
ret = nx_mount(NULL, CONFIG_NSH_PROC_MOUNTPOINT, "procfs", 0, NULL);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to mount the PROC filesystem: %d\n",
syslog(LOG_ERR, "ERROR: Failed to mount the PROC filesystem: %d\n",
ret);
return ret;
}
@ -297,8 +296,7 @@ int board_app_initialize(uintptr_t arg)
ret = board_timer_driver_initialize("/dev/timer0", 2);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the timer driver: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the timer driver: %d\n",
ret);
return ret;
}
@ -314,8 +312,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 1);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -326,8 +323,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 2);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -338,8 +334,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 3);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -350,8 +345,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 4);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -362,8 +356,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 5);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -374,8 +367,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 8);
if (ret != OK)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}

View File

@ -294,8 +294,7 @@ int board_app_initialize(uintptr_t arg)
ret = board_ajoy_initialize();
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the joystick driver: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the joystick driver: %d\n",
ret);
return ret;
}
@ -307,8 +306,7 @@ int board_app_initialize(uintptr_t arg)
ret = board_timer_driver_initialize("/dev/timer0", 2);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the timer driver: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the timer driver: %d\n",
ret);
return ret;
}
@ -324,8 +322,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 1);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -336,8 +333,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 2);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -348,8 +344,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 3);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -360,8 +355,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 4);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -372,8 +366,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 5);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -384,8 +377,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_qencoder_initialize(buf, 8);
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: Failed to register the qencoder: %d\n",
syslog(LOG_ERR, "ERROR: Failed to register the qencoder: %d\n",
ret);
return ret;
}
@ -431,8 +423,7 @@ int board_app_initialize(uintptr_t arg)
ret = stm32l4_cc1101_initialize();
if (ret < 0)
{
syslog(LOG_ERR,
"ERROR: stm32l4_cc1101_initialize failed: %d\n",
syslog(LOG_ERR, "ERROR: stm32l4_cc1101_initialize failed: %d\n",
ret);
return ret;
}

View File

@ -398,7 +398,7 @@ bool nxnotify_cancellation(FAR struct tcb_s *tcb)
*/
else if (tcb->task_state == TSTATE_WAIT_MQNOTEMPTY ||
tcb->task_state == TSTATE_WAIT_MQNOTFULL)
tcb->task_state == TSTATE_WAIT_MQNOTFULL)
{
nxmq_wait_irq(tcb, ECANCELED);
}