google-ipmi-sys: Convert input to use std::span<const uint8_t>

Change-Id: I533de34c04e3d2577cb9076add441153b2994c30
Signed-off-by: Willy Tu <wltu@google.com>
diff --git a/ipmi.hpp b/ipmi.hpp
index ef8c627..8194f0f 100644
--- a/ipmi.hpp
+++ b/ipmi.hpp
@@ -21,7 +21,7 @@
 #include <ipmid/api-types.hpp>
 #include <ipmid/message.hpp>
 #include <optional>
-#include <vector>
+#include <span>
 
 namespace google
 {
@@ -30,7 +30,7 @@
 
 // Handle the google-ipmi-sys IPMI OEM commands.
 Resp handleSysCommand(HandlerInterface* handler, ::ipmi::Context::ptr ctx,
-                      uint8_t cmd, const std::vector<uint8_t>& data);
+                      uint8_t cmd, std::span<const uint8_t> data);
 
 } // namespace ipmi
 } // namespace google