[STM32F3] When removing typedefs do it right...

and don't declare variables while doing it so that everything starts
exploding as soon as you use the header more then once.
This commit is contained in:
Piotr Esden-Tempski 2013-07-07 21:55:31 -07:00
parent 52d34c814b
commit f4cd74a741

View File

@ -400,7 +400,7 @@ extern const clock_scale_t hsi_8mhz[CLOCK_END];
enum osc {
PLL, HSE, HSI, LSE, LSI
} osc_t;
};
BEGIN_DECLS