diff --git a/cpu/kinetis/Makefile.features b/cpu/kinetis/Makefile.features
index 2045a3cedd3928f6482b961ec476b6ccba6bdc0e..d07c15f80bcbb6dd9c620fdb85cb71a4be51f1ef 100644
--- a/cpu/kinetis/Makefile.features
+++ b/cpu/kinetis/Makefile.features
@@ -1,5 +1,6 @@
 FEATURES_PROVIDED += periph_cpuid
 FEATURES_PROVIDED += periph_hwrng
 FEATURES_PROVIDED += periph_gpio
+FEATURES_PROVIDED += periph_mcg
 
 include $(RIOTCPU)/cortexm_common/Makefile.features
diff --git a/cpu/kinetis/cpu.c b/cpu/kinetis/cpu.c
index 2460cb7894e30dcf0355b23b7843dfe99f4ca8aa..f5785dd8b3e8af22e6d2d1e8ca2a82d4f1097e72 100644
--- a/cpu/kinetis/cpu.c
+++ b/cpu/kinetis/cpu.c
@@ -19,7 +19,9 @@
 
 #include "cpu.h"
 #include "periph/init.h"
+#ifdef MODULE_PERIPH_MCG
 #include "mcg.h"
+#endif
 
 /**
  * @brief Initialize the CPU, set IRQ priorities
@@ -33,8 +35,10 @@ void cpu_init(void)
     /* Note: This register can only be written once after each reset, so we must
      * enable all power modes that we wish to use. */
     SMC->PMPROT |= SMC_PMPROT_ALLS_MASK | SMC_PMPROT_AVLP_MASK;
+#ifdef MODULE_PERIPH_MCG
     /* initialize the CPU clocking provided by the MCG module */
     kinetis_mcg_init();
+#endif
     /* trigger static peripheral initialization */
     periph_init();
 }