]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
thunderbolt: Add Intel USB-IF ID to the NVM upgrade supported list
authorMika Westerberg <mika.westerberg@linux.intel.com>
Fri, 8 May 2020 08:49:47 +0000 (11:49 +0300)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Mon, 22 Jun 2020 16:58:31 +0000 (19:58 +0300)
With USB4 Intel is also using its USB-IF ID (0x8087) with the new
devices. The NVM format is the same. Add this to the driver so NVM
upgrade is possible with these devices as well.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/thunderbolt/switch.c

index c01176429d5f1712bf09fb33137c8e3aed880f96..6659b2b0663dd7eec3fe907523a833bdb92e4294 100644 (file)
@@ -423,7 +423,8 @@ static int tb_switch_nvm_add(struct tb_switch *sw)
         * currently restrict NVM upgrade for Intel hardware. We may
         * relax this in the future when we learn other NVM formats.
         */
-       if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL) {
+       if (sw->config.vendor_id != PCI_VENDOR_ID_INTEL &&
+           sw->config.vendor_id != 0x8087) {
                dev_info(&sw->dev,
                         "NVM format of vendor %#x is not known, disabling NVM upgrade\n",
                         sw->config.vendor_id);