internal: remove extra namespaces

Remove blobs and flash namespaces and leave code in internal namespace.
This interface will be used by the host-side tool as well now.

Change-Id: I2446827abe4cad116624ac926955190ea417c0df
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/lpc_aspeed.hpp b/lpc_aspeed.hpp
index 47c7a4a..1c4481a 100644
--- a/lpc_aspeed.hpp
+++ b/lpc_aspeed.hpp
@@ -14,8 +14,8 @@
     static std::unique_ptr<LpcMapperInterface>
         createAspeedMapper(size_t regionSize);
 
-    LpcMapperAspeed(size_t regionSize, const flash::internal::Sys* sys =
-                                           &flash::internal::sys_impl) :
+    LpcMapperAspeed(size_t regionSize,
+                    const internal::Sys* sys = &internal::sys_impl) :
         regionSize(regionSize),
         sys(sys){};
 
@@ -24,7 +24,7 @@
 
   private:
     size_t regionSize;
-    const flash::internal::Sys* sys;
+    const internal::Sys* sys;
 };
 
 } // namespace blobs