Commit 09b4138e authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Rob Clark

drm/msm/a6xx: Fix a typo in an error message

'in' is duplicated in the error message. Axe one of them.
While at it, slighly improve indentation.
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarRob Clark <robdclark@chromium.org>
parent 81c4389e
...@@ -1011,8 +1011,8 @@ static int a6xx_gmu_rpmh_arc_votes_init(struct device *dev, u32 *votes, ...@@ -1011,8 +1011,8 @@ static int a6xx_gmu_rpmh_arc_votes_init(struct device *dev, u32 *votes,
if (j == pri_count) { if (j == pri_count) {
DRM_DEV_ERROR(dev, DRM_DEV_ERROR(dev,
"Level %u not found in in the RPMh list\n", "Level %u not found in the RPMh list\n",
level); level);
DRM_DEV_ERROR(dev, "Available levels:\n"); DRM_DEV_ERROR(dev, "Available levels:\n");
for (j = 0; j < pri_count; j++) for (j = 0; j < pri_count; j++)
DRM_DEV_ERROR(dev, " %u\n", pri[j]); DRM_DEV_ERROR(dev, " %u\n", pri[j]);
......
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