Remove trailing whitespaces

Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
diff --git a/library/common.h b/library/common.h
index f7a9c9d..87f0d66 100644
--- a/library/common.h
+++ b/library/common.h
@@ -87,12 +87,12 @@
 #define MBEDTLS_CHAR_7( x ) ( (unsigned char) ( ( ( x ) >> 56 ) & 0xff ) )
 
 /**
- * Get the unsigned 32 bits integer corresponding to four bytes in 
+ * Get the unsigned 32 bits integer corresponding to four bytes in
  * big-endian order (MSB first).
  *
  * \param   data    Base address of the memory to get the four bytes from.
- * \param   offset  Offset from \p base of the first and most significant 
- *                  byte of the four bytes to build the 32 bits unsigned 
+ * \param   offset  Offset from \p base of the first and most significant
+ *                  byte of the four bytes to build the 32 bits unsigned
  *                  integer from.
  */
 #ifndef MBEDTLS_GET_UINT32_BE
@@ -108,10 +108,10 @@
 /**
  * Put in memory a 32 bits unsigned integer in big-endian order.
  *
- * \param   n       32 bits unsigned integer to put in memory
- * \param   data    Base address of the memory where to put the 32 
+ * \param   n       32 bits unsigned integer to put in memory.
+ * \param   data    Base address of the memory where to put the 32
  *                  bits unsigned integer in.
- * \param   offset  Offset from \p base where to put the most significant 
+ * \param   offset  Offset from \p base where to put the most significant
  *                  byte of the 32 bits unsigned integer \p n.
  */
 #ifndef MBEDTLS_PUT_UINT32_BE
@@ -125,12 +125,12 @@
 #endif
 
 /**
- * Get the unsigned 32 bits integer corresponding to four bytes in 
+ * Get the unsigned 32 bits integer corresponding to four bytes in
  * little-endian order (LSB first).
  *
  * \param   data    Base address of the memory to get the four bytes from.
- * \param   offset  Offset from \p base of the first and least significant 
- *                  byte of the four bytes to build the 32 bits unsigned 
+ * \param   offset  Offset from \p base of the first and least significant
+ *                  byte of the four bytes to build the 32 bits unsigned
  *                  integer from.
  */
 #ifndef MBEDTLS_GET_UINT32_LE
@@ -146,10 +146,10 @@
 /**
  * Put in memory a 32 bits unsigned integer in little-endian order.
  *
- * \param   n       32 bits unsigned integer to put in memory
- * \param   data    Base address of the memory where to put the 32 
+ * \param   n       32 bits unsigned integer to put in memory.
+ * \param   data    Base address of the memory where to put the 32
  *                  bits unsigned integer in.
- * \param   offset  Offset from \p base where to put the least significant 
+ * \param   offset  Offset from \p base where to put the least significant
  *                  byte of the 32 bits unsigned integer \p n.
  */
 #ifndef MBEDTLS_PUT_UINT32_LE
@@ -163,12 +163,12 @@
 #endif
 
 /**
- * Get the unsigned 16 bits integer corresponding to four bytes in 
+ * Get the unsigned 16 bits integer corresponding to four bytes in
  * little-endian order (LSB first).
  *
  * \param   data    Base address of the memory to get the four bytes from.
- * \param   offset  Offset from \p base of the first and least significant 
- *                  byte of the four bytes to build the 16 bits unsigned 
+ * \param   offset  Offset from \p base of the first and least significant
+ *                  byte of the four bytes to build the 16 bits unsigned
  *                  integer from.
  */
 #ifndef MBEDTLS_GET_UINT16_LE
@@ -182,10 +182,10 @@
 /**
  * Put in memory a 16 bits unsigned integer in little-endian order.
  *
- * \param   n       16 bits unsigned integer to put in memory
- * \param   data    Base address of the memory where to put the 16 
+ * \param   n       16 bits unsigned integer to put in memory.
+ * \param   data    Base address of the memory where to put the 16
  *                  bits unsigned integer in.
- * \param   offset  Offset from \p base where to put the least significant 
+ * \param   offset  Offset from \p base where to put the least significant
  *                  byte of the 16 bits unsigned integer \p n.
  */
 #ifndef MBEDTLS_PUT_UINT16_LE