nvme: Add tertiary number to NVME_VS
[cascardo/linux.git] / include / linux / nvme.h
index 7676557..086d196 100644 (file)
@@ -960,6 +960,7 @@ struct nvme_completion {
        __le16  status;         /* did the command fail, and if so, why? */
 };
 
-#define NVME_VS(major, minor) (((major) << 16) | ((minor) << 8))
+#define NVME_VS(major, minor, tertiary) \
+       (((major) << 16) | ((minor) << 8) | (tertiary))
 
 #endif /* _LINUX_NVME_H */