MIPS: APRP: Code formatting clean-ups.

Clean-up code according to the 'checkpatch.pl' script.

Signed-off-by: Steven J. Hill <Steven.Hill@imgtec.com>
Reviewed-by: Qais Yousef <Qais.Yousef@imgtec.com>
Patchwork: http://patchwork.linux-mips.org/patch/6097/
Reviewed-by: John Crispin <blogic@openwrt.org>
This commit is contained in:
Steven J. Hill
2014-01-01 16:35:32 +01:00
committed by Ralf Baechle
parent 1336113a6c
commit 5792bf6438
9 changed files with 247 additions and 319 deletions

View File

@@ -26,7 +26,7 @@ static int hw_tcs, hw_vpes;
int vpe_run(struct vpe *v)
{
unsigned long flags, val, dmt_flag;
struct vpe_notifications *n;
struct vpe_notifications *notifier;
unsigned int vpeflags;
struct tc *t;
@@ -139,8 +139,8 @@ int vpe_run(struct vpe *v)
emt(dmt_flag);
local_irq_restore(flags);
list_for_each_entry(n, &v->notify, list)
n->start(VPE_MODULE_MINOR);
list_for_each_entry(notifier, &v->notify, list)
notifier->start(VPE_MODULE_MINOR);
return 0;
}