Skip to content

Commit d5c43eb

Browse files
RDKEMW-2871 IFirmwareUpdate.h Interface header not following coding guidelines (#218)
Reason for change: Solve the guideline issues on IFirmwareUpdate.h Test Procedure: verify build success and basic test Risks: Low Priority: P1 Signed-off-by: [email protected] Signed-off-by: [email protected] Co-authored-by: Anand Kandasamy <[email protected]>
1 parent cd40df9 commit d5c43eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apis/FirmwareUpdate/IFirmwareUpdate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ struct EXTERNAL IFirmwareUpdate : virtual public Core::IUnknown {
6464
// @param State : State
6565
// @param SubState: SubState
6666
// @text onUpdateStateChange
67-
virtual void OnUpdateStateChange (const State state , const SubState substate )= 0;
67+
virtual void OnUpdateStateChange (const State state , const SubState substate ) {};
6868

6969
// @brief This notification is raised between flashing started state and flashing succeeded/failed.
7070
// @param percentageComplete : Number between 0 and 100 indicating the "percentage complete" of the flashing process.
7171
// @text onFlashingStateChange
72-
virtual void OnFlashingStateChange (const uint32_t percentageComplete )= 0;
72+
virtual void OnFlashingStateChange (const uint32_t percentageComplete ) {};
7373

7474
};
7575

0 commit comments

Comments
 (0)