Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1370196 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2016-04-03 13:00 +0200 |
| Last post | 2016-04-05 19:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] PCI: xilinx-nwl: Fix spelling mistake "Initialization" Colin King <colin.king@canonical.com> - 2016-04-03 13:00 +0200
Re: [PATCH] PCI: xilinx-nwl: Fix spelling mistake "Initialization" Bjorn Helgaas <helgaas@kernel.org> - 2016-04-05 19:20 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2016-04-03 13:00 +0200 |
| Subject | [PATCH] PCI: xilinx-nwl: Fix spelling mistake "Initialization" |
| Message-ID | <rjNV8-274-5@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
Minor fix, spelling mistake "Initalization" should be
"Initialization".
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/pci/host/pcie-xilinx-nwl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/host/pcie-xilinx-nwl.c b/drivers/pci/host/pcie-xilinx-nwl.c
index 5139e64..3479d30 100644
--- a/drivers/pci/host/pcie-xilinx-nwl.c
+++ b/drivers/pci/host/pcie-xilinx-nwl.c
@@ -819,7 +819,7 @@ static int nwl_pcie_probe(struct platform_device *pdev)
err = nwl_pcie_bridge_init(pcie);
if (err) {
- dev_err(pcie->dev, "HW Initalization failed\n");
+ dev_err(pcie->dev, "HW Initialization failed\n");
return err;
}
--
2.7.4
[toc] | [next] | [standalone]
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Date | 2016-04-05 19:20 +0200 |
| Message-ID | <rkCNX-7ui-11@gated-at.bofh.it> |
| In reply to | #1370196 |
On Sun, Apr 03, 2016 at 11:56:16AM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Minor fix, spelling mistake "Initalization" should be
> "Initialization".
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Applied to pci/misc for v4.7, thanks, Colin!
I noticed the same error in drivers/pci/pci.c and fixed that as well:
commit dcbb408ac5a2803ba44ca2fae8bf53eb5d4082f3
Author: Colin Ian King <colin.king@canonical.com>
Date: Tue Apr 5 12:12:45 2016 -0500
PCI: Fix spelling errors
Fix spelling of "initalization".
[bhelgaas: also fix pci/pci.c]
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
diff --git a/drivers/pci/host/pcie-xilinx-nwl.c b/drivers/pci/host/pcie-xilinx-nwl.c
index 5139e64..3479d30 100644
--- a/drivers/pci/host/pcie-xilinx-nwl.c
+++ b/drivers/pci/host/pcie-xilinx-nwl.c
@@ -819,7 +819,7 @@ static int nwl_pcie_probe(struct platform_device *pdev)
err = nwl_pcie_bridge_init(pcie);
if (err) {
- dev_err(pcie->dev, "HW Initalization failed\n");
+ dev_err(pcie->dev, "HW Initialization failed\n");
return err;
}
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 25e0327..e3d6b33 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2389,7 +2389,7 @@ out:
return offset + ent_size;
}
-/* Enhanced Allocation Initalization */
+/* Enhanced Allocation Initialization */
void pci_ea_init(struct pci_dev *dev)
{
int ea;
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web