Minor: Fixed spacing.

This commit is contained in:
Florian Pose 2011-12-16 16:26:16 +01:00
parent ccb7acef66
commit de0d773944
1 changed files with 6 additions and 3 deletions

View File

@ -145,16 +145,19 @@ void ec_fsm_slave_state_ready(
)
{
// Check for pending external SDO requests
if (ec_fsm_slave_action_process_sdo(fsm))
if (ec_fsm_slave_action_process_sdo(fsm)) {
return;
}
// Check for pending FoE requests
if (ec_fsm_slave_action_process_foe(fsm))
if (ec_fsm_slave_action_process_foe(fsm)) {
return;
}
// Check for pending SoE requests
if (ec_fsm_slave_action_process_soe(fsm))
if (ec_fsm_slave_action_process_soe(fsm)) {
return;
}
}
/*****************************************************************************/