Reduce the indentation within vchiq_dump_service_use_state in order
to avoid a multiline dereference.

Signed-off-by: Stefan Wahren <stefan.wah...@i2se.com>
---
 .../staging/vc04_services/interface/vchiq_arm/vchiq_arm.c    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
index 49d1ee2..030bec8 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
@@ -3276,12 +3276,12 @@ vchiq_dump_service_use_state(VCHIQ_STATE_T *state)
                if (only_nonzero && !service_ptr->service_use_count)
                        continue;
 
-               if (service_ptr->srvstate != VCHIQ_SRVSTATE_FREE) {
-                       service_data[j].fourcc = service_ptr->base.fourcc;
-                       service_data[j].clientid = service_ptr->client_id;
-                       service_data[j++].use_count = service_ptr->
-                                                       service_use_count;
-               }
+               if (service_ptr->srvstate == VCHIQ_SRVSTATE_FREE)
+                       continue;
+
+               service_data[j].fourcc = service_ptr->base.fourcc;
+               service_data[j].clientid = service_ptr->client_id;
+               service_data[j++].use_count = service_ptr->service_use_count;
        }
 
        read_unlock_bh(&arm_state->susp_res_lock);
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to