diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2023-04-20 23:16:37 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2023-04-20 23:16:37 +0200 |
commit | b4c85e7bf423b9790cae50bb62663e8f5b5443e3 (patch) | |
tree | d4a1accdb916e24aa97445fc26f613cebaadd38f /drivers/pci | |
parent | Merge branch 'pci/controller/layerscape' (diff) | |
parent | PCI: mt7621: Use dev_info() to log PCIe card detection (diff) | |
download | linux-b4c85e7bf423b9790cae50bb62663e8f5b5443e3.tar.xz linux-b4c85e7bf423b9790cae50bb62663e8f5b5443e3.zip |
Merge branch 'pci/controller/mt7621'
- Log empty slots with dev_info(), not dev_err() (Sergio Paracuellos)
* pci/controller/mt7621:
PCI: mt7621: Use dev_info() to log PCIe card detection
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/controller/pcie-mt7621.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/controller/pcie-mt7621.c b/drivers/pci/controller/pcie-mt7621.c index 63a5f4463a9f..a445ec314375 100644 --- a/drivers/pci/controller/pcie-mt7621.c +++ b/drivers/pci/controller/pcie-mt7621.c @@ -378,8 +378,8 @@ static int mt7621_pcie_init_ports(struct mt7621_pcie *pcie) u32 slot = port->slot; if (!mt7621_pcie_port_is_linkup(port)) { - dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n", - slot); + dev_info(dev, "pcie%d no card, disable it (RST & CLK)\n", + slot); mt7621_control_assert(port); port->enabled = false; num_disabled++; |