summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/stm32f4xx_it.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-03-20 22:27:34 +0000
committerDamien George <damien.p.george@gmail.com>2015-03-20 22:27:34 +0000
commit7674da8057b5236373345350acd2a7513377d393 (patch)
tree95c2fa86be688e2dc01fb8159248a43f3a12f09e /stmhal/stm32f4xx_it.c
parent69922c602cea2b54c30b04078f066717b18425d6 (diff)
downloadmicropython-7674da8057b5236373345350acd2a7513377d393.tar.gz
micropython-7674da8057b5236373345350acd2a7513377d393.zip
stmhal: Remove some unnecessary declarations, purely for cleanup.
Diffstat (limited to 'stmhal/stm32f4xx_it.c')
-rw-r--r--stmhal/stm32f4xx_it.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/stm32f4xx_it.c b/stmhal/stm32f4xx_it.c
index 9be180a051..3db2019cbf 100644
--- a/stmhal/stm32f4xx_it.c
+++ b/stmhal/stm32f4xx_it.c
@@ -71,6 +71,7 @@
#include "stm32f4xx_hal.h"
#include "py/obj.h"
+#include "pendsv.h"
#include "extint.h"
#include "timer.h"
#include "uart.h"
@@ -162,7 +163,6 @@ void DebugMon_Handler(void) {
* @retval None
*/
void PendSV_Handler(void) {
- extern void pendsv_isr_handler(void);
pendsv_isr_handler();
}