clang-format: fix pointer alignment, sort using

Change-Id: Id433d0ecc10c62807594b3a637e591045223faa6
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/dbus/dbuswrite.hpp b/dbus/dbuswrite.hpp
index 6733721..0bdcde9 100644
--- a/dbus/dbuswrite.hpp
+++ b/dbus/dbuswrite.hpp
@@ -22,13 +22,13 @@
 #include <sdbusplus/bus.hpp>
 #include <string>
 
-constexpr const char *pwmInterface = "xyz.openbmc_project.Control.FanPwm";
+constexpr const char* pwmInterface = "xyz.openbmc_project.Control.FanPwm";
 
 class DbusWritePercent : public WriteInterface
 {
   public:
-    DbusWritePercent(const std::string &path, int64_t min, int64_t max,
-                     DbusHelperInterface &helper) :
+    DbusWritePercent(const std::string& path, int64_t min, int64_t max,
+                     DbusHelperInterface& helper) :
         WriteInterface(min, max),
         path(path)
     {
@@ -46,8 +46,8 @@
 class DbusWrite : public WriteInterface
 {
   public:
-    DbusWrite(const std::string &path, int64_t min, int64_t max,
-              DbusHelperInterface &helper) :
+    DbusWrite(const std::string& path, int64_t min, int64_t max,
+              DbusHelperInterface& helper) :
         WriteInterface(min, max),
         path(path)
     {