SKYHAWK_FAMILY will not identify all revisions of the chip.
Use device-id check (skyhawk_chip() macro) instead.
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
 #define BEx_chip(adapter)      (BE3_chip(adapter) || BE2_chip(adapter))
 
 #define be_roce_supported(adapter) ((adapter->if_type == SLI_INTF_TYPE_3 || \
-                               adapter->sli_family == SKYHAWK_SLI_FAMILY) && \
-                               (adapter->function_mode & RDMA_ENABLED))
+                                    skyhawk_chip(adapter)) && \
+                                    (adapter->function_mode & RDMA_ENABLED))
 
 extern const struct ethtool_ops be_ethtool_ops;
 
 
 #define SLI_INTF_TYPE_2                2
 #define SLI_INTF_TYPE_3                3
 
-/* SLI family */
-#define BE_SLI_FAMILY          0x0
-#define LANCER_A0_SLI_FAMILY   0xA
-#define SKYHAWK_SLI_FAMILY      0x2
-
 /********* ISR0 Register offset **********/
 #define CEV_ISR0_OFFSET                        0xC18
 #define CEV_ISR_SIZE                           4
 
        if (addr == NULL)
                goto pci_map_err;
        adapter->db = addr;
-       if (adapter->sli_family == SKYHAWK_SLI_FAMILY) {
+       if (skyhawk_chip(adapter)) {
                adapter->roce_db.size = 4096;
                adapter->roce_db.io_addr =
                                pci_resource_start(adapter->pdev, db_reg);
 
                dev_info.dpp_unmapped_len = 0;
        }
        dev_info.pdev = adapter->pdev;
-       if (adapter->sli_family == SKYHAWK_SLI_FAMILY)
+       if (skyhawk_chip(adapter))
                dev_info.db = adapter->db;
        else
                dev_info.db = adapter->roce_db.base;