[PATCH v2 1/3] exynos: fix coordinate computation in g2d_copy

Inki Dae inki.dae at samsung.com
Thu Jun 12 22:06:07 PDT 2014


On 2014년 06월 02일 01:04, Tobias Jakobi wrote:
> The right-bottom register isn't set correctly.
> Looks like a copy-and-paste error.

Signed-off-by: Inki Dae <inki.dae at samsung.com>

Thanks,
Inki Dae

> 
> Signed-off-by: Tobias Jakobi <tjakobi at math.uni-bielefeld.de>
> ---
>  exynos/exynos_fimg2d.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/exynos/exynos_fimg2d.c b/exynos/exynos_fimg2d.c
> index 0b14618..a565910 100644
> --- a/exynos/exynos_fimg2d.c
> +++ b/exynos/exynos_fimg2d.c
> @@ -382,7 +382,7 @@ int g2d_copy(struct g2d_context *ctx, struct g2d_image *src,
>  	g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
>  	pt.val = 0;
>  	pt.data.x = dst_x + w;
> -	pt.data.y = dst_x + h;
> +	pt.data.y = dst_y + h;
>  	g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
>  
>  	rop4.val = 0;
> 



More information about the dri-devel mailing list