commit | 57dddab747ca555f9f14649a22ff52c71c5198a8 | [log] [tgz] |
---|---|---|
author | karim <karim.rabhi-ext@st.com> | Thu Jun 20 14:09:17 2024 +0100 |
committer | karim <karim.rabhi-ext@st.com> | Thu Jun 20 14:09:17 2024 +0100 |
tree | 29399fbe7935ea4327bebe840b09b153b668bb75 | |
parent | e0654977ea5d79a4bee5f153f62d53bf2e376602 [diff] |
[HAL][FMC] Add missing return at end of non void functions
diff --git a/Src/stm32f1xx_hal_nand.c b/Src/stm32f1xx_hal_nand.c index 88930ca..184912f 100644 --- a/Src/stm32f1xx_hal_nand.c +++ b/Src/stm32f1xx_hal_nand.c
@@ -2037,6 +2037,7 @@ status = HAL_ERROR; } + return status; } /** @@ -2095,6 +2096,7 @@ status = HAL_ERROR; } + return status; } #endif /* USE_HAL_NAND_REGISTER_CALLBACKS */