[PATCH 5/8] staging: vchiq_core: Indent copy_message_data() on a single line

Umang Jain posted 8 patches 1 month, 2 weeks ago
There is a newer version of this series
[PATCH 5/8] staging: vchiq_core: Indent copy_message_data() on a single line
Posted by Umang Jain 1 month, 2 weeks ago
Fix the copy_message_data() indentation in queue_message_sync().

Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
---
 .../staging/vc04_services/interface/vchiq_arm/vchiq_core.c   | 5 ++---
 1 file changed, 2 insertions(+), 3 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 b95443043c27..3ed949343608 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
@@ -1194,9 +1194,8 @@ queue_message_sync(struct vchiq_state *state, struct vchiq_service *service,
 		state->id, msg_type_str(VCHIQ_MSG_TYPE(msgid)), header, size,
 		VCHIQ_MSG_SRCPORT(msgid), VCHIQ_MSG_DSTPORT(msgid));
 
-	callback_result =
-		copy_message_data(copy_callback, context,
-				  header->data, size);
+	callback_result = copy_message_data(copy_callback, context,
+					    header->data, size);
 
 	if (callback_result < 0) {
 		mutex_unlock(&state->slot_mutex);
-- 
2.45.2
Re: [PATCH 5/8] staging: vchiq_core: Indent copy_message_data() on a single line
Posted by Stefan Wahren 1 month, 2 weeks ago
Am 11.10.24 um 09:22 schrieb Umang Jain:
> Fix the copy_message_data() indentation in queue_message_sync().
>
> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Stefan Wahren <wahrenst@gmx.net>