Message ID | 20220513135341.290289-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [next] drm/rockchip: Fix spelling mistake "aligened" -> "aligned" | expand |
Hi, Am Freitag, 13. Mai 2022, 15:53:41 CEST schrieb Colin Ian King: > There is a spelling mistake in a drm_err message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> didn't you sent the same patch some days ago already? Which is applied to drm-misc-next in [0]. Just want to make sure I didn't miss anything. Thanks Heiko [0] https://cgit.freedesktop.org/drm/drm-misc/commit/?id=f0eaf60c67738da8aae786bda74a2fffeca6d7cc > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > index 0b49fed16535..04e8e22a8640 100644 > --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c > @@ -1202,7 +1202,7 @@ static void vop2_plane_atomic_update(struct drm_plane *plane, > */ > stride = (fb->pitches[0] << 3) / bpp; > if ((stride & 0x3f) && (xmirror || rotate_90 || rotate_270)) > - drm_err(vop2->drm, "vp%d %s stride[%d] not 64 pixel aligened\n", > + drm_err(vop2->drm, "vp%d %s stride[%d] not 64 pixel aligned\n", > vp->id, win->data->name, stride); > > rb_swap = vop2_afbc_rb_swap(fb->format->format); >
diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c index 0b49fed16535..04e8e22a8640 100644 --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c @@ -1202,7 +1202,7 @@ static void vop2_plane_atomic_update(struct drm_plane *plane, */ stride = (fb->pitches[0] << 3) / bpp; if ((stride & 0x3f) && (xmirror || rotate_90 || rotate_270)) - drm_err(vop2->drm, "vp%d %s stride[%d] not 64 pixel aligened\n", + drm_err(vop2->drm, "vp%d %s stride[%d] not 64 pixel aligned\n", vp->id, win->data->name, stride); rb_swap = vop2_afbc_rb_swap(fb->format->format);
There is a spelling mistake in a drm_err message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)