summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorUmang Jain <umang.jain@ideasonboard.com>2024-09-10 10:40:07 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-09-11 15:54:04 +0200
commitf95ca85843d08632b4065089d86b342f4f8ddd32 (patch)
treed0275d3bdbc17088f47bc66366523e3c2ea5acdf /drivers/staging
parent1732d864be1d1ecf5f1a8aa4ff023245e5548cb0 (diff)
downloadlinux-stable-f95ca85843d08632b4065089d86b342f4f8ddd32.tar.gz
linux-stable-f95ca85843d08632b4065089d86b342f4f8ddd32.tar.bz2
linux-stable-f95ca85843d08632b4065089d86b342f4f8ddd32.zip
staging: vchiq_core: Pass enumerated flag instead of int
Pass proper enumerated flag which exists, instead of an integer while calling queue_message(). It helps with readability of the code. 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-8-umang.jain@ideasonboard.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
index 2c75d8fd06a8..1f94db6e0cd9 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
@@ -3245,7 +3245,8 @@ vchiq_queue_message(struct vchiq_instance *instance, unsigned int handle,
switch (service->srvstate) {
case VCHIQ_SRVSTATE_OPEN:
status = queue_message(service->state, service, data_id,
- copy_callback, context, size, 1);
+ copy_callback, context, size,
+ QMFLAGS_IS_BLOCKING);
break;
case VCHIQ_SRVSTATE_OPENSYNC:
status = queue_message_sync(service->state, service, data_id,