]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
octeon: Don't attempt to set the sequence number
authorSimon Glass <sjg@chromium.org>
Thu, 17 Dec 2020 04:20:14 +0000 (21:20 -0700)
committerSimon Glass <sjg@chromium.org>
Sat, 19 Dec 2020 03:32:21 +0000 (20:32 -0700)
Several Octeon drivers operate by setting the sequence number of their
device. This should not be needed with the new sequence number setup. Also
it is not permitted. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/i2c/octeon_i2c.c
drivers/mmc/octeontx_hsmmc.c
drivers/net/octeontx/smi.c

index 100c751f9426ba7257c9d2610dc0c5910e0bbcc3..ea2cc33f9def95079f114d89963db874222195b4 100644 (file)
@@ -791,7 +791,6 @@ static int octeon_i2c_probe(struct udevice *dev)
                pci_dev_t bdf = dm_pci_get_bdf(dev);
 
                debug("TWSI PCI device: %x\n", bdf);
-               dev->req_seq = PCI_FUNC(bdf);
 
                twsi->base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_0,
                                            PCI_REGION_MEM);
index 8de1f92fcb77050a15f6c93ed4f2749829f72905..5552342f8d9e441ac9d1488c80479f1b458001be 100644 (file)
@@ -3731,7 +3731,6 @@ U_BOOT_DRIVER(octeontx_hsmmc_slot) = {
  */
 static int octeontx_mmc_host_probe(struct udevice *dev)
 {
-       pci_dev_t bdf = dm_pci_get_bdf(dev);
        struct octeontx_mmc_host *host = dev_get_priv(dev);
        union mio_emm_int emm_int;
        u8 rev;
@@ -3757,7 +3756,6 @@ static int octeontx_mmc_host_probe(struct udevice *dev)
                return -1;
        }
        host->node = dev->node;
-       dev->req_seq = PCI_FUNC(bdf);
        host->last_slotid = -1;
        if (otx_is_platform(PLATFORM_ASIM))
                host->is_asim = true;
index d4baddb7ef5e691e419dd22fb4d9dfd35d006ba8..d1582b968bfade3f69cfa3ace76a92bfb8b38191 100644 (file)
@@ -319,7 +319,6 @@ int octeontx_smi_probe(struct udevice *dev)
        pci_dev_t bdf = dm_pci_get_bdf(dev);
 
        debug("SMI PCI device: %x\n", bdf);
-       dev->req_seq = PCI_FUNC(bdf);
        if (!dm_pci_map_bar(dev, PCI_BASE_ADDRESS_0, PCI_REGION_MEM)) {
                printf("Failed to map PCI region for bdf %x\n", bdf);
                return -1;