Correct some spacing

This commit is contained in:
Gregory Nutt 2016-08-12 12:41:49 -06:00
parent 82b86cdcf3
commit b4e8876b09
5 changed files with 55 additions and 55 deletions

View File

@ -133,20 +133,20 @@ static void sam_oneshot_handler(void *arg)
*/
if (priv->callback)
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
/* Then perform the callback */
/* Then perform the callback */
callback(&priv->lh, cbarg);
}
callback(&priv->lh, cbarg);
}
}
/****************************************************************************

View File

@ -135,20 +135,20 @@ static void sam_oneshot_handler(void *arg)
*/
if (priv->callback)
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
/* Then perform the callback */
/* Then perform the callback */
callback(&priv->lh, cbarg);
}
callback(&priv->lh, cbarg);
}
}
/****************************************************************************

View File

@ -133,20 +133,20 @@ static void sam_oneshot_handler(void *arg)
*/
if (priv->callback)
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
/* Then perform the callback */
/* Then perform the callback */
callback(&priv->lh, cbarg);
}
callback(&priv->lh, cbarg);
}
}
/****************************************************************************

View File

@ -133,20 +133,20 @@ static void stm32_oneshot_handler(void *arg)
*/
if (priv->callback)
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
/* Then perform the callback */
/* Then perform the callback */
callback(&priv->lh, cbarg);
}
callback(&priv->lh, cbarg);
}
}
/****************************************************************************

View File

@ -133,20 +133,20 @@ static void stm32l4_oneshot_handler(void *arg)
*/
if (priv->callback)
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
{
/* Sample and nullify BEFORE executing callback (in case the callback
* restarts the oneshot).
*/
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
callback = priv->callback;
cbarg = priv->arg;
priv->callback = NULL;
priv->arg = NULL;
/* Then perform the callback */
/* Then perform the callback */
callback(&priv->lh, cbarg);
}
callback(&priv->lh, cbarg);
}
}
/****************************************************************************