Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

doc:pci: Fix typo in Documentation/PCI

This patch fix spelling typo in Documentation/PCI.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Masanari Iida and committed by
Jonathan Corbet
654d2e7c 9ceae1da

+6 -6
+3 -3
Documentation/PCI/MSI-HOWTO.txt
··· 353 353 rc = pci_enable_msix_range(adapter->pdev, adapter->msix_entries, 354 354 maxvec, maxvec); 355 355 /* 356 - * -ENOSPC is the only error code allowed to be analized 356 + * -ENOSPC is the only error code allowed to be analyzed 357 357 */ 358 358 if (rc == -ENOSPC) { 359 359 if (maxvec == 1) ··· 370 370 return rc; 371 371 } 372 372 373 - Note how pci_enable_msix_range() return value is analized for a fallback - 373 + Note how pci_enable_msix_range() return value is analyzed for a fallback - 374 374 any error code other than -ENOSPC indicates a fatal error and should not 375 375 be retried. 376 376 ··· 486 486 If your device supports both MSI-X and MSI capabilities, you should use 487 487 the MSI-X facilities in preference to the MSI facilities. As mentioned 488 488 above, MSI-X supports any number of interrupts between 1 and 2048. 489 - In constrast, MSI is restricted to a maximum of 32 interrupts (and 489 + In contrast, MSI is restricted to a maximum of 32 interrupts (and 490 490 must be a power of two). In addition, the MSI interrupt vectors must 491 491 be allocated consecutively, so the system might not be able to allocate 492 492 as many vectors for MSI as it could for MSI-X. On some platforms, MSI
+1 -1
Documentation/PCI/pci-error-recovery.txt
··· 256 256 ------------------ 257 257 258 258 In response to a return value of PCI_ERS_RESULT_NEED_RESET, the 259 - the platform will peform a slot reset on the requesting PCI device(s). 259 + the platform will perform a slot reset on the requesting PCI device(s). 260 260 The actual steps taken by a platform to perform a slot reset 261 261 will be platform-dependent. Upon completion of slot reset, the 262 262 platform will call the device slot_reset() callback.
+2 -2
Documentation/PCI/pcieaer-howto.txt
··· 66 66 source ID. nosourceid=n by default. 67 67 68 68 2.3 AER error output 69 - When a PCI-E AER error is captured, an error message will be outputed to 70 - console. If it's a correctable error, it is outputed as a warning. 69 + When a PCI-E AER error is captured, an error message will be outputted to 70 + console. If it's a correctable error, it is outputted as a warning. 71 71 Otherwise, it is printed as an error. So users could choose different 72 72 log level to filter out correctable error messages. 73 73