The Road to Clang-Format part 4

The Return of the Endline

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I5c0e8a8639ae9433c9a5f5eed444c07763e5bc3f
diff --git a/src/register/hei_scom_register.hpp b/src/register/hei_scom_register.hpp
index d056475..9e04b0a 100644
--- a/src/register/hei_scom_register.hpp
+++ b/src/register/hei_scom_register.hpp
@@ -60,7 +60,10 @@
   public: // Accessor functions
 
     /** Function overloaded from parent HardwareRegister class. */
-    RegisterType_t getRegisterType() const { return REG_TYPE_SCOM; }
+    RegisterType_t getRegisterType() const
+    {
+        return REG_TYPE_SCOM;
+    }
 
     /** Function overloaded from parent HardwareRegister class. */
     RegisterAddress_t getAddress() const
@@ -69,7 +72,10 @@
     }
 
     /** Function overloaded from parent HardwareRegister class. */
-    size_t getSize() const { return 8; }
+    size_t getSize() const
+    {
+        return 8;
+    }
 
   private: // Instance variables
 
@@ -139,7 +145,10 @@
   public: // Accessor functions
 
     /** Function overloaded from parent HardwareRegister class. */
-    RegisterType_t getRegisterType() const { return REG_TYPE_ID_SCOM; }
+    RegisterType_t getRegisterType() const
+    {
+        return REG_TYPE_ID_SCOM;
+    }
 
     /** Function overloaded from parent HardwareRegister class. */
     RegisterAddress_t getAddress() const
@@ -148,7 +157,10 @@
     }
 
     /** Function overloaded from parent HardwareRegister class. */
-    size_t getSize() const { return 8; } // See note in class documentation.
+    size_t getSize() const
+    {
+        return 8; // See note in class documentation.
+    }
 
   private: // Instance variables