diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-05-31 07:34:14 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-07-03 01:45:09 +0200 |
commit | 7a5966eb9123d9e335c0ea04f0fbb0c71e418186 (patch) | |
tree | 9c11f573205e837541f97e78a758bc7a1c695a9a /drivers/pci | |
parent | PCI: qcom: Reorder to put v0 functions together, v1 functions together, etc (diff) | |
download | linux-7a5966eb9123d9e335c0ea04f0fbb0c71e418186.tar.xz linux-7a5966eb9123d9e335c0ea04f0fbb0c71e418186.zip |
PCI: qcom: Fix spelling mistake: "asser" -> "assert"
Trivial fix to spelling mistake in dev_err message.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/dwc/pcie-qcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/dwc/pcie-qcom.c b/drivers/pci/dwc/pcie-qcom.c index 289cda1b4897..fbc79a5274c6 100644 --- a/drivers/pci/dwc/pcie-qcom.c +++ b/drivers/pci/dwc/pcie-qcom.c @@ -695,7 +695,7 @@ static int qcom_pcie_init_v3(struct qcom_pcie *pcie) ret = reset_control_assert(res->axi_s_reset); if (ret) { - dev_err(dev, "cannot asser axi slave reset\n"); + dev_err(dev, "cannot assert axi slave reset\n"); return ret; } |