s/Control.FanCtrl.Mode/Control.Mode/

The interface for a Mode is generic enough for
objects beyond strictly fan control.

Change-Id: I3cb7e7564f841e680dc34743908644be9639267d
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/setsensor.cpp b/setsensor.cpp
index 7daa762..cef8090 100644
--- a/setsensor.cpp
+++ b/setsensor.cpp
@@ -7,7 +7,7 @@
 /* Fan Control */
 static constexpr auto objectPath = "/xyz/openbmc_project/settings/fanctrl/zone";
 static constexpr auto busName = "xyz.openbmc_project.State.FanCtrl";
-static constexpr auto intf = "xyz.openbmc_project.Control.FanCtrl.Mode";
+static constexpr auto intf = "xyz.openbmc_project.Control.Mode";
 static constexpr auto property = "Manual";
 using Value = sdbusplus::message::variant<bool>;