Message ID | 20210215181550.714101-3-zhengdejin5@gmail.com |
---|---|
State | Superseded |
Headers | show |
Series | [v1,1/4] PCI: Introduce pcim_alloc_irq_vectors() | expand |
Hello Dejin, [...] > add pcim_alloc_irq_vectors(), a explicit device-managed version of > pci_alloc_irq_vectors(). It would be "Add" at the start of the sentence. You could also drop the "explicit" word or replace it with "an explicit", if you want to keep it. Generally, this commit message could be improved - you could explain that you are updating the documentation to reflect the addition of this new function called pcim_alloc_irq_vectors(), and also briefly explain why it was added, etc. [...] > devm_pci_remap_cfg_resource() : ioremap PCI configuration space resource > + pcim_alloc_irq_vectors() : managed irq vectors allocation [...] It would be "IRQ" here. Krzysztof
diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst index cd8b6e657b94..cd53106fbf5e 100644 --- a/Documentation/driver-api/driver-model/devres.rst +++ b/Documentation/driver-api/driver-model/devres.rst @@ -380,6 +380,7 @@ PCI devm_pci_alloc_host_bridge() : managed PCI host bridge allocation devm_pci_remap_cfgspace() : ioremap PCI configuration space devm_pci_remap_cfg_resource() : ioremap PCI configuration space resource + pcim_alloc_irq_vectors() : managed irq vectors allocation pcim_enable_device() : after success, all PCI ops become managed pcim_pin_device() : keep PCI device enabled after release
add pcim_alloc_irq_vectors(), a explicit device-managed version of pci_alloc_irq_vectors(). Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com> --- Documentation/driver-api/driver-model/devres.rst | 1 + 1 file changed, 1 insertion(+)