Commit Diff


commit - 8b3b29b72611d5dc8b7eaf9afa06539c1f244950
commit + 8607cffe4e9a907487ad3eef6aa205341fa1a7d6
blob - 6692c22ae33b354e645ef0a84cdf03618d2afaab
blob + 74dda6587b2316981243632313760bebb227b981
--- include/hw.h
+++ include/hw.h
@@ -6,19 +6,16 @@
 #include "stdint.h"
 
 
-namespace Hw
-{
+namespace Hw {
 
 
-inline void 
-write32(uintptr_t ptr, uint32_t value)
+inline void write32(uintptr_t ptr, uint32_t value)
 {
     *reinterpret_cast<uint32_t *>(ptr) = value;
 }
 
 
-inline uint32_t 
-read32(uintptr_t ptr)
+inline uint32_t read32(uintptr_t ptr)
 {
     return *reinterpret_cast<const uint32_t *>(ptr);
 }
blob - 68fc2f5a6027ee720e39076492517add5595bdc7
blob + eeae5fd55c128bd0f5a46cc928e3c0f248d90289
--- include/uart.h
+++ include/uart.h
@@ -5,11 +5,10 @@
 #include <stdint.h>
 
 
-namespace Board
-{
-namespace Uart
-{
+namespace Board {
+namespace Uart {
 
+
 void
 initialize();
 
@@ -20,5 +19,5 @@ uint8_t
 recv();
 
 
-}   // namespace Uart
-}   // namespace Board
+} // namespace Uart
+} // namespace Board
blob - e36dbd2dd0cb445249dc0ce911795ab47e383191
blob + c4144f4f4f27dbfea85a4652e75c9fe9e952c475
--- kernel.cc
+++ kernel.cc
@@ -3,8 +3,7 @@
 #include <uart.h>
 
 
-namespace 
-{
+namespace {
 
 
 void
@@ -16,7 +15,7 @@ uart_send_string(const char *szContent)
 }
 
 
-}
+} // anonymous namespace 
 
 
 extern "C"
blob - 820aadda2dab2213e682641d7a460988c84a4047
blob + 4bca98c1bdcfe706477e07f9e95f14ffc9468376
--- uart_qemu_virt.cc
+++ uart_qemu_virt.cc
@@ -5,18 +5,15 @@
 #include <uart.h>
 
 
-namespace Board
-{
-namespace Uart
-{
+namespace Board {
+namespace Uart {
 
 
-namespace
-{
+namespace {
 
 // constexpr uintptr_t UART_BASE = 0xffffffffc9000000ULL;
 
-}
+} // anonymous namespace
 
 
 void initialize()
@@ -35,5 +32,5 @@ uint8_t recv()
 }
 
 
-}   // namespace Uart
-}   // namespace Board
+} // namespace Uart
+} // namespace Board