diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-05-31 06:34:14 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-07-02 18:45:09 -0500 |
commit | 7a5966eb9123d9e335c0ea04f0fbb0c71e418186 (patch) | |
tree | 9c11f573205e837541f97e78a758bc7a1c695a9a /drivers/pci/dwc/pcie-qcom.c | |
parent | 5d0f1b84c5265f129029885e768a2f451f48bcc2 (diff) | |
download | linux-7a5966eb9123d9e335c0ea04f0fbb0c71e418186.tar.bz2 |
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/dwc/pcie-qcom.c')
-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; } |