psu-ng: Change the GPIOReader class to GPIOInterface

The GPIOReader class only contains a read function. A new write function
will be added so it makes sense for the class to be named Interface
instead of Reader.
Change GPIOReader to GPIOInterface, and change the base class from
GPIOInterface to GPIOInterfaceBase.

Tested: Ran CI.

Change-Id: I2a4abdabe0136a7f73337f0d054d2dd79712f53c
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/phosphor-power-supply/util_base.hpp b/phosphor-power-supply/util_base.hpp
index 7ae362c..ade43ef 100644
--- a/phosphor-power-supply/util_base.hpp
+++ b/phosphor-power-supply/util_base.hpp
@@ -37,10 +37,10 @@
     return getUtils().setPresence(bus, invpath, present, name);
 }
 
-class GPIOInterface
+class GPIOInterfaceBase
 {
   public:
-    virtual ~GPIOInterface() = default;
+    virtual ~GPIOInterfaceBase() = default;
 
     virtual int read() = 0;
     virtual std::string getName() const = 0;