]> www.infradead.org Git - linux.git/commitdiff
staging: vchiq_core: Remove unused function argument
authorUmang Jain <umang.jain@ideasonboard.com>
Tue, 10 Sep 2024 05:10:06 +0000 (10:40 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Sep 2024 13:54:04 +0000 (15:54 +0200)
The argument 'is_blocking' in queue_message_sync() is not
used in the function. Drop it.

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Stefan Wahren <wahrenst@gmx.net>
Tested-by: Stefan Wahren <wahrenst@gmx.net>
Link: https://lore.kernel.org/r/20240910051007.297227-7-umang.jain@ideasonboard.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c

index 29203c510952bed70a3316262e9d0e1d186fb6fb..2c75d8fd06a819f7d8bb0ad03dd2fa9210b8e1be 100644 (file)
@@ -1139,7 +1139,7 @@ queue_message_sync(struct vchiq_state *state, struct vchiq_service *service,
                   int msgid,
                   ssize_t (*copy_callback)(void *context, void *dest,
                                            size_t offset, size_t maxsize),
-                  void *context, int size, int is_blocking)
+                  void *context, int size)
 {
        struct vchiq_shared_state *local;
        struct vchiq_header *header;
@@ -1517,7 +1517,7 @@ parse_open(struct vchiq_state *state, struct vchiq_header *header)
                /* Acknowledge the OPEN */
                if (service->sync) {
                        if (queue_message_sync(state, NULL, openack_id, memcpy_copy_callback,
-                                              &ack_payload, sizeof(ack_payload), 0) == -EAGAIN)
+                                              &ack_payload, sizeof(ack_payload)) == -EAGAIN)
                                goto bail_not_ready;
 
                        /* The service is now open */
@@ -3249,7 +3249,7 @@ vchiq_queue_message(struct vchiq_instance *instance, unsigned int handle,
                break;
        case VCHIQ_SRVSTATE_OPENSYNC:
                status = queue_message_sync(service->state, service, data_id,
-                                           copy_callback, context, size, 1);
+                                           copy_callback, context, size);
                break;
        default:
                status = -EINVAL;