Fix clang-tidy reported issue

The proper way to unpack multiple items is to just unpack them
No need to use std::tie here.

Change-Id: I7262d0401ee9952971eab1be199bdee41ea07bd4
Signed-off-by: Vernon Mauery <vernon.mauery@gmail.com>
diff --git a/transport/serialbridge/serialcmd.cpp b/transport/serialbridge/serialcmd.cpp
index ec84f5c..696515a 100644
--- a/transport/serialbridge/serialcmd.cpp
+++ b/transport/serialbridge/serialcmd.cpp
@@ -169,7 +169,7 @@
         uint8_t cc = 0xff;
         std::vector<uint8_t> data;
 
-        m.read(std::tie(netFn, lun, cmd, cc, data));
+        m.read(netFn, lun, cmd, cc, data);
 
         uint8_t netFnLun = (netFn << netFnShift) | (lun & lunMask);
         uint8_t seqLun = (seq << netFnShift) | (lun & lunMask);