diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2017-09-01 17:35:50 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-09-01 17:35:50 -0400 |
commit | 96291d565550c1fd363e488cc17cb3189d2e4cc2 (patch) | |
tree | 5edda68ba7ef9568df9a8a843a4e5c03be656ed8 /drivers/pci/dwc | |
parent | cacf7eaf2a36cc51c24b591d681676b6d27a7a6e (diff) |
PCI: Fix typos and whitespace errors
Fix various typos and whitespace errors:
s/Synopsis/Synopsys/
s/Designware/DesignWare/
s/Keystine/Keystone/
s/gpio/GPIO/
s/pcie/PCIe/
s/phy/PHY/
s/confgiruation/configuration/
No functional change intended.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/dwc')
-rw-r--r-- | drivers/pci/dwc/Kconfig | 12 | ||||
-rw-r--r-- | drivers/pci/dwc/pci-dra7xx.c | 1 | ||||
-rw-r--r-- | drivers/pci/dwc/pci-keystone-dw.c | 2 | ||||
-rw-r--r-- | drivers/pci/dwc/pcie-designware-ep.c | 2 | ||||
-rw-r--r-- | drivers/pci/dwc/pcie-designware-host.c | 2 | ||||
-rw-r--r-- | drivers/pci/dwc/pcie-designware.c | 2 | ||||
-rw-r--r-- | drivers/pci/dwc/pcie-designware.h | 2 |
7 files changed, 11 insertions, 12 deletions
diff --git a/drivers/pci/dwc/Kconfig b/drivers/pci/dwc/Kconfig index d275aadc47ee..22ec82fcdea2 100644 --- a/drivers/pci/dwc/Kconfig +++ b/drivers/pci/dwc/Kconfig | |||
@@ -25,7 +25,7 @@ config PCI_DRA7XX | |||
25 | work either as EP or RC. In order to enable host-specific features | 25 | work either as EP or RC. In order to enable host-specific features |
26 | PCI_DRA7XX_HOST must be selected and in order to enable device- | 26 | PCI_DRA7XX_HOST must be selected and in order to enable device- |
27 | specific features PCI_DRA7XX_EP must be selected. This uses | 27 | specific features PCI_DRA7XX_EP must be selected. This uses |
28 | the Designware core. | 28 | the DesignWare core. |
29 | 29 | ||
30 | if PCI_DRA7XX | 30 | if PCI_DRA7XX |
31 | 31 | ||
@@ -97,8 +97,8 @@ config PCI_KEYSTONE | |||
97 | select PCIE_DW_HOST | 97 | select PCIE_DW_HOST |
98 | help | 98 | help |
99 | Say Y here if you want to enable PCI controller support on Keystone | 99 | Say Y here if you want to enable PCI controller support on Keystone |
100 | SoCs. The PCI controller on Keystone is based on Designware hardware | 100 | SoCs. The PCI controller on Keystone is based on DesignWare hardware |
101 | and therefore the driver re-uses the Designware core functions to | 101 | and therefore the driver re-uses the DesignWare core functions to |
102 | implement the driver. | 102 | implement the driver. |
103 | 103 | ||
104 | config PCI_LAYERSCAPE | 104 | config PCI_LAYERSCAPE |
@@ -132,7 +132,7 @@ config PCIE_QCOM | |||
132 | select PCIE_DW_HOST | 132 | select PCIE_DW_HOST |
133 | help | 133 | help |
134 | Say Y here to enable PCIe controller support on Qualcomm SoCs. The | 134 | Say Y here to enable PCIe controller support on Qualcomm SoCs. The |
135 | PCIe controller uses the Designware core plus Qualcomm-specific | 135 | PCIe controller uses the DesignWare core plus Qualcomm-specific |
136 | hardware wrappers. | 136 | hardware wrappers. |
137 | 137 | ||
138 | config PCIE_ARMADA_8K | 138 | config PCIE_ARMADA_8K |
@@ -145,8 +145,8 @@ config PCIE_ARMADA_8K | |||
145 | help | 145 | help |
146 | Say Y here if you want to enable PCIe controller support on | 146 | Say Y here if you want to enable PCIe controller support on |
147 | Armada-8K SoCs. The PCIe controller on Armada-8K is based on | 147 | Armada-8K SoCs. The PCIe controller on Armada-8K is based on |
148 | Designware hardware and therefore the driver re-uses the | 148 | DesignWare hardware and therefore the driver re-uses the |
149 | Designware core functions to implement the driver. | 149 | DesignWare core functions to implement the driver. |
150 | 150 | ||
151 | config PCIE_ARTPEC6 | 151 | config PCIE_ARTPEC6 |
152 | bool "Axis ARTPEC-6 PCIe controller" | 152 | bool "Axis ARTPEC-6 PCIe controller" |
diff --git a/drivers/pci/dwc/pci-dra7xx.c b/drivers/pci/dwc/pci-dra7xx.c index f2fc5f47064e..a6f972e2e6f2 100644 --- a/drivers/pci/dwc/pci-dra7xx.c +++ b/drivers/pci/dwc/pci-dra7xx.c | |||
@@ -275,7 +275,6 @@ static irqreturn_t dra7xx_pcie_msi_irq_handler(int irq, void *arg) | |||
275 | return IRQ_HANDLED; | 275 | return IRQ_HANDLED; |
276 | } | 276 | } |
277 | 277 | ||
278 | |||
279 | static irqreturn_t dra7xx_pcie_irq_handler(int irq, void *arg) | 278 | static irqreturn_t dra7xx_pcie_irq_handler(int irq, void *arg) |
280 | { | 279 | { |
281 | struct dra7xx_pcie *dra7xx = arg; | 280 | struct dra7xx_pcie *dra7xx = arg; |
diff --git a/drivers/pci/dwc/pci-keystone-dw.c b/drivers/pci/dwc/pci-keystone-dw.c index 8bc626e640c8..6eb21aa1a99f 100644 --- a/drivers/pci/dwc/pci-keystone-dw.c +++ b/drivers/pci/dwc/pci-keystone-dw.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Designware application register space functions for Keystone PCI controller | 2 | * DesignWare application register space functions for Keystone PCI controller |
3 | * | 3 | * |
4 | * Copyright (C) 2013-2014 Texas Instruments., Ltd. | 4 | * Copyright (C) 2013-2014 Texas Instruments., Ltd. |
5 | * http://www.ti.com | 5 | * http://www.ti.com |
diff --git a/drivers/pci/dwc/pcie-designware-ep.c b/drivers/pci/dwc/pcie-designware-ep.c index 398406393f37..e38747c6718c 100644 --- a/drivers/pci/dwc/pcie-designware-ep.c +++ b/drivers/pci/dwc/pcie-designware-ep.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /** | 1 | /** |
2 | * Synopsys Designware PCIe Endpoint controller driver | 2 | * Synopsys DesignWare PCIe Endpoint controller driver |
3 | * | 3 | * |
4 | * Copyright (C) 2017 Texas Instruments | 4 | * Copyright (C) 2017 Texas Instruments |
5 | * Author: Kishon Vijay Abraham I <kishon@ti.com> | 5 | * Author: Kishon Vijay Abraham I <kishon@ti.com> |
diff --git a/drivers/pci/dwc/pcie-designware-host.c b/drivers/pci/dwc/pcie-designware-host.c index d29c020da082..e71450b9aabe 100644 --- a/drivers/pci/dwc/pcie-designware-host.c +++ b/drivers/pci/dwc/pcie-designware-host.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Synopsys Designware PCIe host controller driver | 2 | * Synopsys DesignWare PCIe host controller driver |
3 | * | 3 | * |
4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. | 4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. |
5 | * http://www.samsung.com | 5 | * http://www.samsung.com |
diff --git a/drivers/pci/dwc/pcie-designware.c b/drivers/pci/dwc/pcie-designware.c index 0e03af279259..daae8dd62d39 100644 --- a/drivers/pci/dwc/pcie-designware.c +++ b/drivers/pci/dwc/pcie-designware.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Synopsys Designware PCIe host controller driver | 2 | * Synopsys DesignWare PCIe host controller driver |
3 | * | 3 | * |
4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. | 4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. |
5 | * http://www.samsung.com | 5 | * http://www.samsung.com |
diff --git a/drivers/pci/dwc/pcie-designware.h b/drivers/pci/dwc/pcie-designware.h index b4d2a89f8e58..cca0b93c97ac 100644 --- a/drivers/pci/dwc/pcie-designware.h +++ b/drivers/pci/dwc/pcie-designware.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Synopsys Designware PCIe host controller driver | 2 | * Synopsys DesignWare PCIe host controller driver |
3 | * | 3 | * |
4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. | 4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. |
5 | * http://www.samsung.com | 5 | * http://www.samsung.com |