stm32: rename SOC_STM32F1X -> SOC_SERIES_STM32F1X

Use SOC_SERIES_* for naming SoCs with similar features and architectures
with the goal of code reuse. The Series in the config variable should avoid
name collisions and clearly denote the relationships within an SoC family.

Change-Id: I7a98542f96b5d5dc3acc23782c4d45f98cceb599
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-04-02 22:40:26 -04:00 committed by Anas Nashif
commit 4b411b34a1
11 changed files with 28 additions and 28 deletions

View file

@ -21,7 +21,7 @@
/* common clock control device name for all STM32 chips */
#define STM32_CLOCK_CONTROL_NAME "stm32-cc"
#ifdef CONFIG_SOC_STM32F1X
#ifdef CONFIG_SOC_SERIES_STM32F1X
#include "stm32f1_clock_control.h"
#endif