diff --git a/cpu/atmega_common/avr-libc-extra/errno.h b/cpu/atmega_common/avr-libc-extra/errno.h
index c418aa26cab0d604a245af9ebd664fc535085d62..a8b21f75bbd86db7a58e945cecd0d0b1441cca73 100644
--- a/cpu/atmega_common/avr-libc-extra/errno.h
+++ b/cpu/atmega_common/avr-libc-extra/errno.h
@@ -55,7 +55,7 @@ extern "C" {
 #endif
 
 /**
- * @brief   Export errno value
+ * @brief number of last error
  */
 extern int errno;
 
diff --git a/cpu/cc26x0/doc.txt b/cpu/cc26x0/doc.txt
index dbfecb25333515974ff6ce3652d2aa99bffbaf78..e7dbcc0a4ecfae171160c174937d8caef3c3857f 100644
--- a/cpu/cc26x0/doc.txt
+++ b/cpu/cc26x0/doc.txt
@@ -5,7 +5,7 @@
  */
 
 /**
- * @defgroup        cpu_specific_peripheral_memory_map CC26x0 peripheral memory map
+ * @defgroup        cpu_specific_peripheral_memory_map Texas Instruments CC26x0 peripheral memory map
  * @ingroup         cpu
  */
 
diff --git a/cpu/x86/include/x86_rtc.h b/cpu/x86/include/x86_rtc.h
index 9f9a95ad4ddba355a051dc7d42b7811a4591b2a0..a94505607a956d0d72daf9f57f256b8f5ac3c7a9 100644
--- a/cpu/x86/include/x86_rtc.h
+++ b/cpu/x86/include/x86_rtc.h
@@ -50,7 +50,8 @@ typedef union x86_rtc_data {
         uint8_t second, minute, hour;
         uint8_t day, month, year, century;
     };
-    uint64_t timestamp;
+    uint64_t timestamp; /**< The full timestamp as a 64bit integer
+                              representation */
 } x86_rtc_data_t;
 
 #define RTC_REG_SECOND         (0x00)