summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Vesely <jan.vesely@rutgers.edu>2015-02-27 12:47:46 -0500
committerJan Vesely <jan.vesely@rutgers.edu>2015-03-14 17:02:06 -0400
commit0706c14e7cc5f1d996bb1c3c526f877c4f8fc215 (patch)
treeece8b3813bb5c3a660df0d41221e7871a568a383 /tests
parent13e34308b70a9e0e7682ae7ced29a4aa0c3ad281 (diff)
Fix unused, and unused-but-set variables warnings
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> Reviewed-by: Emil Velikov <eil.l.velikov@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/exynos/exynos_fimg2d_test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/exynos/exynos_fimg2d_test.c b/tests/exynos/exynos_fimg2d_test.c
index 14b38a9e..8e20e27b 100644
--- a/tests/exynos/exynos_fimg2d_test.c
+++ b/tests/exynos/exynos_fimg2d_test.c
@@ -360,7 +360,7 @@ static int g2d_copy_with_scale_test(struct exynos_device *dev,
{
struct g2d_context *ctx;
struct g2d_image src_img, dst_img;
- unsigned int src_x, src_y, dst_x, dst_y, img_w, img_h;
+ unsigned int src_x, src_y, img_w, img_h;
unsigned long userptr, size;
int ret;
@@ -374,8 +374,6 @@ static int g2d_copy_with_scale_test(struct exynos_device *dev,
src_x = 0;
src_y = 0;
- dst_x = 0;
- dst_y = 0;
img_w = screen_width;
img_h = screen_height;