code style

This commit is contained in:
rusefillc 2023-10-09 12:16:33 -04:00
parent a3dc6ffbd1
commit 0353500421
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ void BitbangI2c::scl_low() {
bool BitbangI2c::init(brain_pin_e scl, brain_pin_e sda) {
#if EFI_PROD_CODE
if (m_sdaPort) return false;
if (m_sdaPort) {
return false;
}
if (!isBrainPinValid(scl) || !isBrainPinValid(sda)) {
return false;