diff --git a/cpu/lpc2387/periph/pwm.c b/cpu/lpc2387/periph/pwm.c
index 7da96d59ea484df6e9bd3dae35d0965966f4e9f9..d8f5f3e6375c4a2db151e41d340e6cae2dacbd5b 100644
--- a/cpu/lpc2387/periph/pwm.c
+++ b/cpu/lpc2387/periph/pwm.c
@@ -82,7 +82,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
 #endif
     }
 
-    return 0;
+    return frequency;
 }
 
 int pwm_set(pwm_t dev, int channel, unsigned int value)
diff --git a/cpu/stm32f3/periph/pwm.c b/cpu/stm32f3/periph/pwm.c
index 091dd4d6ebf878ce99de84c1a3dcc0c220d9972c..f38c988a2107b8efa4450c60594b478af17996c6 100644
--- a/cpu/stm32f3/periph/pwm.c
+++ b/cpu/stm32f3/periph/pwm.c
@@ -125,7 +125,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
     /* enable PWM generation */
     pwm_start(dev);
 
-    return 0;
+    return frequency;
 }
 
 int pwm_set(pwm_t dev, int channel, unsigned int value)
diff --git a/cpu/stm32f4/periph/pwm.c b/cpu/stm32f4/periph/pwm.c
index 90999b3db6dffbe0077c43bf38c79cab4e252951..eaf5e76b35fb881b1e9912195d6c9ea61da907bf 100644
--- a/cpu/stm32f4/periph/pwm.c
+++ b/cpu/stm32f4/periph/pwm.c
@@ -157,7 +157,7 @@ int pwm_init(pwm_t dev, pwm_mode_t mode, unsigned int frequency, unsigned int re
     /* enable timer ergo the PWM generation */
     pwm_start(dev);
 
-    return 0;
+    return frequency;
 }
 
 int pwm_set(pwm_t dev, int channel, unsigned int value)
diff --git a/drivers/include/periph/pwm.h b/drivers/include/periph/pwm.h
index 15b7792b3e93da75b16500d1e432bd4783891e55..a64eebcfa050a627664a35214c585209014d6ef0 100644
--- a/drivers/include/periph/pwm.h
+++ b/drivers/include/periph/pwm.h
@@ -76,7 +76,7 @@ typedef enum {
  * @param[in] frequency     the PWM frequency in Hz
  * @param[in] resolution    the PWM resolution
  *
- * @return                  0 on success
+ * @return                  Actual PWM frequency on success
  * @return                  -1 on mode not applicable
  * @return                  -2 on frequency and resolution not applicable
  */
diff --git a/tests/periph_pwm/main.c b/tests/periph_pwm/main.c
index 7e66c769225a63121bee7525c1b7d1bc7ce7c2af..7cbc228e2b2e511c68efeb6ca1f695b731e269b3 100644
--- a/tests/periph_pwm/main.c
+++ b/tests/periph_pwm/main.c
@@ -48,16 +48,15 @@ int main(void)
     int step = STEP;
 
     puts("\nRIOT PWM test");
-    puts("Connect an LED or scope to PWM pins to see something\n");
+    puts("Connect an LED or scope to PWM pins to see something");
 
     res = pwm_init(DEV, MODE, FREQU, STEPS);
-    if (res == 0) {
-        puts("PWM successfully initialized.\n");
-    }
-    else {
+    if (res < 0) {
         puts("Errors while initializing PWM");
         return -1;
     }
+    puts("PWM initialized.");
+    printf("requested: %d Hz, got %d Hz\n", FREQU, res);
 
     while (1) {
         for (int i = 0; i < CHANNELS; i++) {