staging: vc04_services: use 'time_left' variable with wait_for_completion_timeout()
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Thu, 20 Jun 2024 18:25:38 +0000 (20:25 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jun 2024 13:25:51 +0000 (15:25 +0200)
There is a confusing pattern in the kernel to use a variable named
'timeout' to store the result of wait_for_completion_timeout() causing
patterns like:

        timeout = wait_for_completion_timeout(...)
        if (!timeout) return -ETIMEDOUT;

with all kinds of permutations. Use 'time_left' as a variable to make the
code self explaining.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Stefan Wahren <wahrenst@gmx.net>
Link: https://lore.kernel.org/r/20240620182538.5497-2-wsa+renesas@sang-engineering.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c
drivers/staging/vc04_services/vchiq-mmal/mmal-vchiq.c

index b3599ec6293a0be3c0ce163e8c9b6c51fd7b9a61..deec33f63bcf82acb691dc54499310f38292b6d7 100644 (file)
@@ -591,7 +591,7 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count)
 static void stop_streaming(struct vb2_queue *vq)
 {
        int ret;
-       unsigned long timeout;
+       unsigned long time_left;
        struct bcm2835_mmal_dev *dev = vb2_get_drv_priv(vq);
        struct vchiq_mmal_port *port = dev->capture.port;
 
@@ -636,9 +636,9 @@ static void stop_streaming(struct vb2_queue *vq)
                v4l2_dbg(1, bcm2835_v4l2_debug, &dev->v4l2_dev,
                         "%s: Waiting for buffers to be returned - %d outstanding\n",
                         __func__, atomic_read(&port->buffers_with_vpu));
-               timeout = wait_for_completion_timeout(&dev->capture.frame_cmplt,
-                                                     HZ);
-               if (timeout == 0) {
+               time_left = wait_for_completion_timeout(&dev->capture.frame_cmplt,
+                                                       HZ);
+               if (time_left == 0) {
                        v4l2_err(&dev->v4l2_dev, "%s: Timeout waiting for buffers to be returned - %d outstanding\n",
                                 __func__,
                                 atomic_read(&port->buffers_with_vpu));
index fca920d41e4f3e41bd13dbc920e9d519ce0fe43e..67489c334f7b2dc0d55027659de76ad2bbd37983 100644 (file)
@@ -655,7 +655,7 @@ static int send_synchronous_mmal_msg(struct vchiq_mmal_instance *instance,
 {
        struct mmal_msg_context *msg_context;
        int ret;
-       unsigned long timeout;
+       unsigned long time_left;
 
        /* payload size must not cause message to exceed max size */
        if (payload_len >
@@ -693,9 +693,9 @@ static int send_synchronous_mmal_msg(struct vchiq_mmal_instance *instance,
                return ret;
        }
 
-       timeout = wait_for_completion_timeout(&msg_context->u.sync.cmplt,
-                                             SYNC_MSG_TIMEOUT * HZ);
-       if (timeout == 0) {
+       time_left = wait_for_completion_timeout(&msg_context->u.sync.cmplt,
+                                               SYNC_MSG_TIMEOUT * HZ);
+       if (time_left == 0) {
                pr_err("timed out waiting for sync completion\n");
                ret = -ETIME;
                /* todo: what happens if the message arrives after aborting */