summaryrefslogtreecommitdiffstats
path: root/include/linux/pci.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-09-03 13:31:05 -0700
committerBjorn Helgaas <bhelgaas@google.com>2013-09-25 15:42:53 -0600
commita895c28a1f5d761679cb229b19fb08ca2067211e (patch)
tree9474520a47cf2021fdab34e4c7d29ac50b67b3f1 /include/linux/pci.h
parenta006482b67a96c16dfefc558e36863c51e1829bf (diff)
downloadlinux-a895c28a1f5d761679cb229b19fb08ca2067211e.tar.gz
linux-a895c28a1f5d761679cb229b19fb08ca2067211e.tar.bz2
linux-a895c28a1f5d761679cb229b19fb08ca2067211e.zip
PCI: Fix comment typo, remove unnecessary !! in pci_is_pcie()
Use normal kernel-doc "Returns:" instead of "retrun" Assignment to bool is always 1 or 0 so the !! isn't necessary. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r--include/linux/pci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index da172f956ad6..ee0f3b60af22 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -1749,11 +1749,11 @@ static inline int pci_pcie_cap(struct pci_dev *dev)
* pci_is_pcie - check if the PCI device is PCI Express capable
* @dev: PCI device
*
- * Retrun true if the PCI device is PCI Express capable, false otherwise.
+ * Returns: true if the PCI device is PCI Express capable, false otherwise.
*/
static inline bool pci_is_pcie(struct pci_dev *dev)
{
- return !!pci_pcie_cap(dev);
+ return pci_pcie_cap(dev);
}
/**