hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/arch/sh/drivers/pci/common.c
....@@ -54,7 +54,7 @@
5454 int cap66 = -1;
5555 u16 stat;
5656
57
- printk(KERN_INFO "PCI: Checking 66MHz capabilities...\n");
57
+ pr_info("PCI: Checking 66MHz capabilities...\n");
5858
5959 for (pci_devfn = 0; pci_devfn < 0xff; pci_devfn++) {
6060 if (PCI_FUNC(pci_devfn))
....@@ -134,7 +134,7 @@
134134 pcibios_report_status(PCI_STATUS_REC_TARGET_ABORT |
135135 PCI_STATUS_SIG_TARGET_ABORT |
136136 PCI_STATUS_REC_MASTER_ABORT, 1);
137
- printk("\n");
137
+ pr_cont("\n");
138138
139139 cmd |= PCI_STATUS_REC_TARGET_ABORT;
140140 }
....@@ -143,7 +143,7 @@
143143 printk(KERN_DEBUG "PCI: parity error detected: ");
144144 pcibios_report_status(PCI_STATUS_PARITY |
145145 PCI_STATUS_DETECTED_PARITY, 1);
146
- printk("\n");
146
+ pr_cont("\n");
147147
148148 cmd |= PCI_STATUS_PARITY | PCI_STATUS_DETECTED_PARITY;
149149