nvme_manager: Add Kioxia to supported drives

Add support for Kioxia drives to be reported out through phosphor
nvme_manager.

Tested: Tested on a Kioxia drive and verified that the MFG name is
displayed correctly as "Kioxia"

Signed-off-by: Brandon Kim <brandonkim@google.com>
Change-Id: Ia62cdeb752d6abeba95f7e895fdd30364d35a455
diff --git a/nvme_manager.cpp b/nvme_manager.cpp
index d15732c..bdbacd0 100644
--- a/nvme_manager.cpp
+++ b/nvme_manager.cpp
@@ -44,8 +44,8 @@
 
 static constexpr const int TEMPERATURE_SENSOR_FAILURE = 0x81;
 
-static std::map<std::string, std::string> map_vendor = {{"80 86", "Intel"},
-                                                        {"14 4d", "Samsung"}};
+static std::map<std::string, std::string> map_vendor = {
+    {"80 86", "Intel"}, {"1e f", "Kioxia"}, {"14 4d", "Samsung"}};
 
 namespace fs = std::filesystem;