lpc_aspeed: move driver path to class member

Move the driver path to class member.

Change-Id: I83e5c2649ee88ca48f6103dd119fc335e4783338
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/lpc_aspeed.cpp b/lpc_aspeed.cpp
index 2001986..25f027a 100644
--- a/lpc_aspeed.cpp
+++ b/lpc_aspeed.cpp
@@ -25,11 +25,14 @@
 #include <cstdint>
 #include <cstring>
 #include <memory>
+#include <string>
 #include <utility>
 
 namespace blobs
 {
 
+const std::string LpcMapperAspeed::lpcControlPath = "/dev/aspeed-lpc-ctrl";
+
 std::unique_ptr<HardwareMapperInterface>
     LpcMapperAspeed::createAspeedMapper(std::size_t regionSize)
 {
@@ -73,14 +76,12 @@
                  "\n",
                  map.addr, map.size);
 
-    static const char lpcControlPath[] = "/dev/aspeed-lpc-ctrl";
-
-    const auto lpcControlFd = sys->open(lpcControlPath, O_RDWR);
+    const auto lpcControlFd = sys->open(lpcControlPath.c_str(), O_RDWR);
     if (lpcControlFd == -1)
     {
         std::fprintf(stderr,
                      "cannot open Aspeed LPC kernel control dev \"%s\"\n",
-                     lpcControlPath);
+                     lpcControlPath.c_str());
         return std::make_pair(0, 0);
     }
 
diff --git a/lpc_aspeed.hpp b/lpc_aspeed.hpp
index a6d70af..d6a35af 100644
--- a/lpc_aspeed.hpp
+++ b/lpc_aspeed.hpp
@@ -5,6 +5,7 @@
 
 #include <cstdint>
 #include <memory>
+#include <string>
 #include <utility>
 #include <vector>
 
@@ -28,6 +29,7 @@
     std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
 
   private:
+    static const std::string lpcControlPath;
     std::size_t regionSize;
     const internal::Sys* sys;
 };