control: Delete some default move ops

Fix clang-tidy errors like:
```
../control/fan.hpp:29:10: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted]
```

Tested:
Code still compiles.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I7ae0cafccc087cb8c8fd1b1e270324e40dc810bc
diff --git a/control/fan.hpp b/control/fan.hpp
index bb59493..a1b1ee7 100644
--- a/control/fan.hpp
+++ b/control/fan.hpp
@@ -24,9 +24,9 @@
   public:
     Fan() = delete;
     Fan(const Fan&) = delete;
-    Fan(Fan&&) = default;
+    Fan(Fan&&) = delete;
     Fan& operator=(const Fan&) = delete;
-    Fan& operator=(Fan&&) = default;
+    Fan& operator=(Fan&&) = delete;
     ~Fan() = default;
 
     /**