diff options
author | Ryan Desfosses <ryan@desfo.org> | 2014-04-18 20:13:50 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-06-10 22:20:42 -0400 |
commit | 227f06470502c4fea3d93df1f12a77e3e37f6263 (patch) | |
tree | 817a80fa89d17305a47a3e4e4012d36ae6cac36c /drivers/pci/pcie/pme.c | |
parent | 3c78bc61f5ef3bc87e7f94f67ec737d2273f120b (diff) |
PCI: Merge multi-line quoted strings
Merge quoted strings that are broken across lines into a single entity.
The compiler merges them anyway, but checkpatch complains about it, and
merging them makes it easier to grep for strings.
No functional change.
[bhelgaas: changelog, do the same for everything under drivers/pci]
Signed-off-by: Ryan Desfosses <ryan@desfo.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pcie/pme.c')
-rw-r--r-- | drivers/pci/pcie/pme.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/pcie/pme.c b/drivers/pci/pcie/pme.c index bbc3bdd2b189..82e06a86cd77 100644 --- a/drivers/pci/pcie/pme.c +++ b/drivers/pci/pcie/pme.c | |||
@@ -199,8 +199,7 @@ static void pcie_pme_handle_request(struct pci_dev *port, u16 req_id) | |||
199 | * assuming that the PME was reported by a PCIe-PCI bridge that | 199 | * assuming that the PME was reported by a PCIe-PCI bridge that |
200 | * used devfn different from zero. | 200 | * used devfn different from zero. |
201 | */ | 201 | */ |
202 | dev_dbg(&port->dev, "PME interrupt generated for " | 202 | dev_dbg(&port->dev, "PME interrupt generated for non-existent device %02x:%02x.%d\n", |
203 | "non-existent device %02x:%02x.%d\n", | ||
204 | busnr, PCI_SLOT(devfn), PCI_FUNC(devfn)); | 203 | busnr, PCI_SLOT(devfn), PCI_FUNC(devfn)); |
205 | found = pcie_pme_from_pci_bridge(bus, 0); | 204 | found = pcie_pme_from_pci_bridge(bus, 0); |
206 | } | 205 | } |