This makes the code more readable.
Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
         */
 
        /* we support multiple ports, multiples hosts and ANA: */
-       id->cmic = (1 << 0) | (1 << 1) | (1 << 3);
+       id->cmic = NVME_CTRL_CMIC_MULTI_PORT | NVME_CTRL_CMIC_MULTI_CTRL |
+               NVME_CTRL_CMIC_ANA;
 
        /* Limit MDTS according to transport capability */
        if (ctrl->ops->get_mdts)
 
 };
 
 enum {
+       NVME_CTRL_CMIC_MULTI_PORT               = 1 << 0,
        NVME_CTRL_CMIC_MULTI_CTRL               = 1 << 1,
        NVME_CTRL_CMIC_ANA                      = 1 << 3,
        NVME_CTRL_ONCS_COMPARE                  = 1 << 0,