diff options
author | Manivannan Sadhasivam <[email protected]> | 2022-11-09 15:10:39 +0530 |
---|---|---|
committer | Lorenzo Pieralisi <[email protected]> | 2022-11-10 16:05:20 +0100 |
commit | fba31beab3578b793060f549188fe682df7d3ed9 (patch) | |
tree | f0c8d27e400ff22229c2e261830f09c11ae3aa12 | |
parent | 442ae919e6ca77354551a7b8717746b44272e274 (diff) |
PCI: qcom: Fix error message for reset_control_assert()
Fix the error message to mention "assert" instead of "deassert".
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Manivannan Sadhasivam <[email protected]>
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Reviewed-by: Vinod Koul <[email protected]>
-rw-r--r-- | drivers/pci/controller/dwc/pcie-qcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/dwc/pcie-qcom.c b/drivers/pci/controller/dwc/pcie-qcom.c index f711acacaeaf..cf27345f6575 100644 --- a/drivers/pci/controller/dwc/pcie-qcom.c +++ b/drivers/pci/controller/dwc/pcie-qcom.c @@ -1236,7 +1236,7 @@ static int qcom_pcie_init_2_7_0(struct qcom_pcie *pcie) ret = reset_control_assert(res->pci_reset); if (ret < 0) { - dev_err(dev, "cannot deassert pci reset\n"); + dev_err(dev, "cannot assert pci reset\n"); goto err_disable_clocks; } |