From 9c926fe9f5d57ffd9f20433cbe092e3b28cf48b5 Mon Sep 17 00:00:00 2001 From: Wataru Natsume Date: Thu, 3 Mar 2016 19:56:09 +0900 Subject: [PATCH] remove warning of ivisurface reassign on the ivilayer The warning of ivisurface reassign can be removed. It is ok to reassign a surface to a layer it is already on. The warning started to show up during normal operations since patch "hmi-controller: remove duplicate commit_changes in random mode". Signed-off-by: Wataru Natsume [Pekka: rewrote commit message, removed unneeded comments.] Signed-off-by: Pekka Paalanen --- ivi-shell/ivi-layout.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c index f7c4f27..fe7b497 100644 --- a/ivi-shell/ivi-layout.c +++ b/ivi-shell/ivi-layout.c @@ -2417,10 +2417,8 @@ ivi_layout_layer_add_surface(struct ivi_layout_layer *ivilayer, return IVI_FAILED; } - if (addsurf->on_layer == ivilayer) { - weston_log("ivi_layout_layer_add_surface: addsurf is already available\n"); + if (addsurf->on_layer == ivilayer) return IVI_SUCCEEDED; - } wl_list_for_each_safe(ivisurf, next, &layout->surface_list, link) { if (ivisurf->id_surface == addsurf->id_surface) { -- 2.7.4