tests/exynos: remove unused-function build warning

The function g2d_blend_test() is blocked to call because of
feature unsafety. This patch blocks with proper feature name
and also blocks the function itself to remove build warning.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
main
Seung-Woo Kim 2017-03-31 12:30:57 +09:00 committed by Emil Velikov
parent 762be6c210
commit a398adba7c
1 changed files with 3 additions and 1 deletions

View File

@ -523,6 +523,7 @@ fail:
return 0;
}
#if EXYNOS_G2D_USERPTR_TEST
static int g2d_blend_test(struct exynos_device *dev,
struct exynos_bo *src,
struct exynos_bo *dst,
@ -621,6 +622,7 @@ fail:
return 0;
}
#endif
static int g2d_checkerboard_test(struct exynos_device *dev,
struct exynos_bo *src,
@ -864,7 +866,7 @@ int main(int argc, char **argv)
*
* Disable the test for now, until the kernel code has been sanitized.
*/
#if 0
#if EXYNOS_G2D_USERPTR_TEST
ret = g2d_blend_test(dev, src, bo, G2D_IMGBUF_USERPTR);
if (ret < 0)
fprintf(stderr, "failed to test blend operation.\n");