Skip to content

Commit

Permalink
drm/komeda: Fix typos in komeda_splitter_validate
Browse files Browse the repository at this point in the history
Fix both the string and the struct member being printed.

Changes since v1:
 - Now with a bonus grammar fix, too.

Fixes: 264b943 ("drm/komeda: Enable writeback split support")
Reviewed-by: James Qian Wang (Arm Technology China) <james.qian.wang@arm.com>
Signed-off-by: Mihail Atanassov <mihail.atanassov@arm.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190930122231.33029-1-mihail.atanassov@arm.com
  • Loading branch information
m-atanassov committed Oct 21, 2019
1 parent b88639b commit 8ae501e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ komeda_splitter_validate(struct komeda_splitter *splitter,
}

if (!in_range(&splitter->vsize, dflow->in_h)) {
DRM_DEBUG_ATOMIC("split in_in: %d exceed the acceptable range.\n",
dflow->in_w);
DRM_DEBUG_ATOMIC("split in_h: %d exceeds the acceptable range.\n",
dflow->in_h);
return -EINVAL;
}

Expand Down

0 comments on commit 8ae501e

Please # to comment.