Skip to content

Commit ea3eac7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 147482c commit ea3eac7

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

examples/lock-app/silabs/src/AppTask.cpp

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,8 @@ bool emberAfPluginDoorLockSetCredential(chip::EndpointId endpointId, uint16_t cr
532532
chip::FabricIndex modifier, DlCredentialStatus credentialStatus,
533533
CredentialTypeEnum credentialType, const chip::ByteSpan & credentialData)
534534
{
535-
return appInstance().DMDoorLockSetCredential(endpointId, credentialIndex, creator, modifier, credentialStatus,
536-
credentialType, credentialData);
535+
return appInstance().DMDoorLockSetCredential(endpointId, credentialIndex, creator, modifier, credentialStatus, credentialType,
536+
credentialData);
537537
}
538538

539539
bool emberAfPluginDoorLockGetUser(chip::EndpointId endpointId, uint16_t userIndex, EmberAfPluginDoorLockUserInfo & user)
@@ -546,8 +546,8 @@ bool emberAfPluginDoorLockSetUser(chip::EndpointId endpointId, uint16_t userInde
546546
UserStatusEnum userStatus, UserTypeEnum usertype, CredentialRuleEnum credentialRule,
547547
const CredentialStruct * credentials, size_t totalCredentials)
548548
{
549-
return appInstance().DMDoorLockSetUser(endpointId, userIndex, creator, modifier, userName, uniqueId, userStatus,
550-
usertype, credentialRule, credentials, totalCredentials);
549+
return appInstance().DMDoorLockSetUser(endpointId, userIndex, creator, modifier, userName, uniqueId, userStatus, usertype,
550+
credentialRule, credentials, totalCredentials);
551551
}
552552

553553
DlStatus emberAfPluginDoorLockGetSchedule(chip::EndpointId endpointId, uint8_t weekdayIndex, uint16_t userIndex,
@@ -572,22 +572,21 @@ DlStatus emberAfPluginDoorLockSetSchedule(chip::EndpointId endpointId, uint8_t w
572572
DlScheduleStatus status, DaysMaskMap daysMask, uint8_t startHour, uint8_t startMinute,
573573
uint8_t endHour, uint8_t endMinute)
574574
{
575-
return appInstance().DMDoorLockSetWeekDaySchedule(endpointId, weekdayIndex, userIndex, status, daysMask,
576-
startHour, startMinute, endHour, endMinute);
575+
return appInstance().DMDoorLockSetWeekDaySchedule(endpointId, weekdayIndex, userIndex, status, daysMask, startHour, startMinute,
576+
endHour, endMinute);
577577
}
578578

579579
DlStatus emberAfPluginDoorLockSetSchedule(chip::EndpointId endpointId, uint8_t yearDayIndex, uint16_t userIndex,
580580
DlScheduleStatus status, uint32_t localStartTime, uint32_t localEndTime)
581581
{
582-
return appInstance().DMDoorLockSetYearDaySchedule(endpointId, yearDayIndex, userIndex, status, localStartTime,
583-
localEndTime);
582+
return appInstance().DMDoorLockSetYearDaySchedule(endpointId, yearDayIndex, userIndex, status, localStartTime, localEndTime);
584583
}
585584

586585
DlStatus emberAfPluginDoorLockSetSchedule(chip::EndpointId endpointId, uint8_t holidayIndex, DlScheduleStatus status,
587586
uint32_t localStartTime, uint32_t localEndTime, OperatingModeEnum operatingMode)
588587
{
589-
return appInstance().DMDoorLockSetHolidaySchedule(endpointId, holidayIndex, status, localStartTime,
590-
localEndTime, operatingMode);
588+
return appInstance().DMDoorLockSetHolidaySchedule(endpointId, holidayIndex, status, localStartTime, localEndTime,
589+
operatingMode);
591590
}
592591

593592
void emberAfPluginDoorLockOnAutoRelock(chip::EndpointId endpointId)

0 commit comments

Comments
 (0)