Fix checkpatch issue - WARNING:LINE_SPACING

Adding a line after variable declaration in order to comply with
the defined coding style.

Change-Id: Id41af88404bd37227bfd59a2d71ce08d0d6ce005
Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
Yonattan Louise 2015-04-14 17:15:52 -05:00 committed by Anas Nashif
commit 5b5f4eb948
30 changed files with 51 additions and 0 deletions

View file

@ -59,6 +59,7 @@ the PendSV exception.
void _IntLibInit(void)
{
int irq = 0;
for (; irq < CONFIG_NUM_IRQS; irq++) {
_NvicIrqPrioSet(irq, _EXC_IRQ_DEFAULT_PRIO);
}

View file

@ -70,6 +70,7 @@ static struct k_args cmdpacket;
void _TaskAbort(void)
{
const int taskAbortCode = 1;
if (_ScbIsInThreadMode()) {
_task_ioctl(K_Task->Ident, taskAbortCode);
} else {