Commit 3e91a8b5 authored by Colin Ian King's avatar Colin Ian King Committed by Rob Clark

drm/msm/disp/dpu: fix two spelling mistakes

Trivial fix to spelling mistake in error messages
"diable" -> "disable"
"cliend" -> "client"
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
parent a7663a79
...@@ -421,7 +421,7 @@ int dpu_encoder_helper_unregister_irq(struct dpu_encoder_phys *phys_enc, ...@@ -421,7 +421,7 @@ int dpu_encoder_helper_unregister_irq(struct dpu_encoder_phys *phys_enc,
ret = dpu_core_irq_disable(phys_enc->dpu_kms, &irq->irq_idx, 1); ret = dpu_core_irq_disable(phys_enc->dpu_kms, &irq->irq_idx, 1);
if (ret) { if (ret) {
DRM_ERROR("diable failed id=%u, intr=%d, hw=%d, irq=%d ret=%d", DRM_ERROR("disable failed id=%u, intr=%d, hw=%d, irq=%d ret=%d",
DRMID(phys_enc->parent), intr_idx, irq->hw_idx, DRMID(phys_enc->parent), intr_idx, irq->hw_idx,
irq->irq_idx, ret); irq->irq_idx, ret);
} }
......
...@@ -121,7 +121,7 @@ void dpu_power_resource_deinit(struct platform_device *pdev, ...@@ -121,7 +121,7 @@ void dpu_power_resource_deinit(struct platform_device *pdev,
mutex_lock(&phandle->phandle_lock); mutex_lock(&phandle->phandle_lock);
list_for_each_entry_safe(curr_client, next_client, list_for_each_entry_safe(curr_client, next_client,
&phandle->power_client_clist, list) { &phandle->power_client_clist, list) {
pr_err("cliend:%s-%d still registered with refcount:%d\n", pr_err("client:%s-%d still registered with refcount:%d\n",
curr_client->name, curr_client->id, curr_client->name, curr_client->id,
curr_client->refcount); curr_client->refcount);
curr_client->active = false; curr_client->active = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment