unused parameter
This commit is contained in:
parent
f02258538a
commit
9823e83a3d
|
@ -690,7 +690,7 @@ uint32_t findTriggerZeroEventIndex(TriggerState *state, TriggerShape * shape,
|
|||
*/
|
||||
state->triggerCycleCallback = onFindIndexCallback;
|
||||
|
||||
helper.assertSyncPositionAndSetDutyCycle(syncIndex, state, shape, triggerConfig PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
helper.assertSyncPositionAndSetDutyCycle(syncIndex, state, shape PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
isInitializingTrigger = false;
|
||||
return syncIndex % shape->getSize();
|
||||
|
|
|
@ -80,8 +80,8 @@ void TriggerStimulatorHelper::feedSimulatedEvent(TriggerState *state, TriggerSha
|
|||
}
|
||||
}
|
||||
|
||||
void TriggerStimulatorHelper::assertSyncPositionAndSetDutyCycle(const uint32_t syncIndex, TriggerState *state, TriggerShape * shape,
|
||||
trigger_config_s const*triggerConfig DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
void TriggerStimulatorHelper::assertSyncPositionAndSetDutyCycle(const uint32_t syncIndex, TriggerState *state, TriggerShape * shape
|
||||
DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
|
||||
/**
|
||||
* let's feed two more cycles to validate shape definition
|
||||
|
|
|
@ -18,8 +18,8 @@ public:
|
|||
uint32_t findTriggerSyncPoint(TriggerShape * shape,
|
||||
TriggerState *state DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
void assertSyncPositionAndSetDutyCycle(const uint32_t index, TriggerState *state, TriggerShape * shape,
|
||||
trigger_config_s const*triggerConfig DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
void assertSyncPositionAndSetDutyCycle(const uint32_t index, TriggerState *state, TriggerShape * shape
|
||||
DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
private:
|
||||
// send next event so that we can see how state reacts
|
||||
|
|
|
@ -276,5 +276,5 @@ int getRusEfiVersion(void) {
|
|||
if (initBootloader() != 0)
|
||||
return 123;
|
||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||
return 20180203;
|
||||
return 20180204;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue