Skip to content

Commit 49016fc

Browse files
author
Myron Stowe
committed
PCI: Remove unnecessary linesplit in __pci_setup_bridge()
JIRA: https://issues.redhat.com/browse/RHEL-107597 Upstream Status: 75d7b40 commit 75d7b40 Author: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Date: Fri Apr 4 15:45:47 2025 +0300 PCI: Remove unnecessary linesplit in __pci_setup_bridge() 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 Signed-off-by: Myron Stowe <mstowe@redhat.com>
1 parent afe8e65 commit 49016fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/pci/setup-bus.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -776,8 +776,7 @@ static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
776776
{
777777
struct pci_dev *bridge = bus->self;
778778

779-
pci_info(bridge, "PCI bridge to %pR\n",
780-
&bus->busn_res);
779+
pci_info(bridge, "PCI bridge to %pR\n", &bus->busn_res);
781780

782781
if (type & IORESOURCE_IO)
783782
pci_setup_bridge_io(bridge);

0 commit comments

Comments
 (0)