Re: [PATCH 8/9] tests/exynos: remove connector_find_plane

2015-06-12 Thread Emil Velikov
On 10 June 2015 at 14:42, Tobias Jakobi tjak...@math.uni-bielefeld.de wrote:
 No test uses DRM planes at the moment so this function
 is never called.

Similar to the other patch - mention if this been used previously. I'm
assuming that the exynos guys might have some work stashed which
depends on this ?

-Emil
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 8/9] tests/exynos: remove connector_find_plane

2015-06-10 Thread Tobias Jakobi
No test uses DRM planes at the moment so this function
is never called.

Signed-off-by: Tobias Jakobi tjak...@math.uni-bielefeld.de
---
 tests/exynos/exynos_fimg2d_test.c | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/tests/exynos/exynos_fimg2d_test.c 
b/tests/exynos/exynos_fimg2d_test.c
index 1ec7340..59de4ba 100644
--- a/tests/exynos/exynos_fimg2d_test.c
+++ b/tests/exynos/exynos_fimg2d_test.c
@@ -112,37 +112,6 @@ static void connector_find_mode(int fd, struct connector 
*c,
c-crtc = c-encoder-crtc_id;
 }
 
-static int connector_find_plane(int fd, unsigned int *plane_id)
-{
-   drmModePlaneRes *plane_resources;
-   drmModePlane *ovr;
-   int i;
-
-   plane_resources = drmModeGetPlaneResources(fd);
-   if (!plane_resources) {
-   fprintf(stderr, drmModeGetPlaneResources failed: %s\n,
-   strerror(errno));
-   return -1;
-   }
-
-   for (i = 0; i  plane_resources-count_planes; i++) {
-   plane_id[i] = 0;
-
-   ovr = drmModeGetPlane(fd, plane_resources-planes[i]);
-   if (!ovr) {
-   fprintf(stderr, drmModeGetPlane failed: %s\n,
-   strerror(errno));
-   continue;
-   }
-
-   if (ovr-possible_crtcs  (1  0))
-   plane_id[i] = ovr-plane_id;
-   drmModeFreePlane(ovr);
-   }
-
-   return 0;
-}
-
 static int drm_set_crtc(struct exynos_device *dev, struct connector *c,
unsigned int fb_id)
 {
-- 
2.0.5

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html