]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
PCI: Remove unnecessary linesplit in __pci_setup_bridge()
authorIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Fri, 4 Apr 2025 12:45:47 +0000 (15:45 +0300)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 2 Jun 2025 20:30:05 +0000 (15:30 -0500)
No need to split the line in __pci_setup_bridge() as it is way shorter
than the limit.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Link: https://lore.kernel.org/r/20250404124547.51185-1-ilpo.jarvinen@linux.intel.com
drivers/pci/setup-bus.c

index a0d815557f5cf9927c3aecd0925c04d4e661a952..cc37cdb5e35220394d5ede4840a4b25a6a76139f 100644 (file)
@@ -772,8 +772,7 @@ static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
 {
        struct pci_dev *bridge = bus->self;
 
-       pci_info(bridge, "PCI bridge to %pR\n",
-                &bus->busn_res);
+       pci_info(bridge, "PCI bridge to %pR\n", &bus->busn_res);
 
        if (type & IORESOURCE_IO)
                pci_setup_bridge_io(bridge);