PF multiport support has some limitations like not allowing plugging or
unplugging of single ports as they all belong to same PCI device.
A previous patch for removing detachable flag introduced a wrong check.
Fixes: 00a3d8104ac5 ("ethdev: remove detachable device flag")
Signed-off-by: Alejandro Lucero <alejandro.lucero@netronome.com>
                hw = NFP_NET_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
        }
        /* hotplug is not possible with multiport PF */
-       if (!hw->pf_multiport_enabled)
+       if (hw->pf_multiport_enabled)
                return -ENOTSUP;
        return rte_eth_dev_pci_generic_remove(pci_dev, NULL);
 }