There is a spelling mistake "entiry" (should be "entity") and a grammar issue "initial" (should be initialize) in a XDNA_ERR error message. Fix them.
Signed-off-by: Colin Ian King <[email protected]> --- drivers/accel/amdxdna/aie2_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/accel/amdxdna/aie2_ctx.c b/drivers/accel/amdxdna/aie2_ctx.c index baf9a8b90a4d..2e3adbfcdd28 100644 --- a/drivers/accel/amdxdna/aie2_ctx.c +++ b/drivers/accel/amdxdna/aie2_ctx.c @@ -738,7 +738,7 @@ int aie2_hwctx_init(struct amdxdna_hwctx *hwctx) ret = drm_sched_entity_init(&priv->entity, DRM_SCHED_PRIORITY_NORMAL, &sched, 1, NULL); if (ret) { - XDNA_ERR(xdna, "Failed to initial sched entiry. ret %d", ret); + XDNA_ERR(xdna, "Failed to initialize sched entity. ret %d", ret); goto free_sched; } -- 2.55.0
