#define VPD_BASE           0x400
 #define VPD_BASE_OLD       0
 #define VPD_LEN            1024
-#define CHELSIO_VPD_UNIQUE_ID 0x82
 
 /**
  * t4_eeprom_ptov - translate a physical EEPROM address to virtual
 {
        int i, ret = 0, addr;
        int ec, sn, pn, na;
-       u8 *vpd, csum;
+       u8 *vpd, csum, base_val = 0;
        unsigned int vpdr_len, kw_offset, id_len;
 
        vpd = vmalloc(VPD_LEN);
        /* Card information normally starts at VPD_BASE but early cards had
         * it at 0.
         */
-       ret = pci_read_vpd(adapter->pdev, VPD_BASE, sizeof(u32), vpd);
+       ret = pci_read_vpd(adapter->pdev, VPD_BASE, 1, &base_val);
        if (ret < 0)
                goto out;
 
-       /* The VPD shall have a unique identifier specified by the PCI SIG.
-        * For chelsio adapters, the identifier is 0x82. The first byte of a VPD
-        * shall be CHELSIO_VPD_UNIQUE_ID (0x82). The VPD programming software
-        * is expected to automatically put this entry at the
-        * beginning of the VPD.
-        */
-       addr = *vpd == CHELSIO_VPD_UNIQUE_ID ? VPD_BASE : VPD_BASE_OLD;
+       addr = base_val == PCI_VPD_LRDT_ID_STRING ? VPD_BASE : VPD_BASE_OLD;
 
        ret = pci_read_vpd(adapter->pdev, addr, VPD_LEN, vpd);
        if (ret < 0)