Commit 25c42086 authored by Jules Irenge's avatar Jules Irenge Committed by Greg Kroah-Hartman

staging: vc04_services: fix warnings of Block comments use of *

Fix warnings of Block comments use * on subsequent lines.
Issue detected by checkpatch tool.
Signed-off-by: default avatarJules Irenge <jbi.octave@gmail.com>
Link: https://lore.kernel.org/r/20191017173837.27336-1-jbi.octave@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3e722c80
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include "interface/vchi/vchi_common.h" #include "interface/vchi/vchi_common.h"
/****************************************************************************** /******************************************************************************
Global defs * Global defs
*****************************************************************************/ *****************************************************************************/
#define VCHI_BULK_ROUND_UP(x) ((((unsigned long)(x)) + VCHI_BULK_ALIGN - 1) & ~(VCHI_BULK_ALIGN - 1)) #define VCHI_BULK_ROUND_UP(x) ((((unsigned long)(x)) + VCHI_BULK_ALIGN - 1) & ~(VCHI_BULK_ALIGN - 1))
...@@ -56,7 +56,8 @@ typedef struct opaque_vchi_instance_handle_t *VCHI_INSTANCE_T; ...@@ -56,7 +56,8 @@ typedef struct opaque_vchi_instance_handle_t *VCHI_INSTANCE_T;
typedef struct opaque_vchi_service_handle_t *VCHI_SERVICE_HANDLE_T; typedef struct opaque_vchi_service_handle_t *VCHI_SERVICE_HANDLE_T;
/****************************************************************************** /******************************************************************************
Global funcs - implementation is specific to which side you are on (local / remote) * Global funcs - implementation is specific to which side you are on
* (local / remote)
*****************************************************************************/ *****************************************************************************/
#ifdef __cplusplus #ifdef __cplusplus
...@@ -80,7 +81,7 @@ extern void vchi_free_buffer(VCHI_SERVICE_HANDLE_T handle, void *address); ...@@ -80,7 +81,7 @@ extern void vchi_free_buffer(VCHI_SERVICE_HANDLE_T handle, void *address);
extern uint32_t vchi_current_time(VCHI_INSTANCE_T instance_handle); extern uint32_t vchi_current_time(VCHI_INSTANCE_T instance_handle);
/****************************************************************************** /******************************************************************************
Global service API * Global service API
*****************************************************************************/ *****************************************************************************/
// Routine to destroy a service // Routine to destroy a service
extern int32_t vchi_service_destroy(const VCHI_SERVICE_HANDLE_T handle); extern int32_t vchi_service_destroy(const VCHI_SERVICE_HANDLE_T handle);
...@@ -153,9 +154,10 @@ extern int32_t vchi_msg_look_ahead(VCHI_SERVICE_HANDLE_T handle, ...@@ -153,9 +154,10 @@ extern int32_t vchi_msg_look_ahead(VCHI_SERVICE_HANDLE_T handle,
struct vchi_msg_iter *iter, struct vchi_msg_iter *iter,
VCHI_FLAGS_T flags); VCHI_FLAGS_T flags);
/****************************************************************************** /*******************************************************************************
Global service support API - operations on held messages and message iterators * Global service support API - operations on held messages
*****************************************************************************/ * and message iterators
******************************************************************************/
// Routine to get the address of a held message // Routine to get the address of a held message
extern void *vchi_held_msg_ptr(const struct vchi_held_msg *message); extern void *vchi_held_msg_ptr(const struct vchi_held_msg *message);
...@@ -196,7 +198,7 @@ extern int32_t vchi_msg_iter_hold_next(struct vchi_msg_iter *iter, ...@@ -196,7 +198,7 @@ extern int32_t vchi_msg_iter_hold_next(struct vchi_msg_iter *iter,
struct vchi_held_msg *message); struct vchi_held_msg *message);
/****************************************************************************** /******************************************************************************
Global bulk API * Global bulk API
*****************************************************************************/ *****************************************************************************/
// Routine to prepare interface for a transfer from the other side // Routine to prepare interface for a transfer from the other side
...@@ -221,7 +223,7 @@ extern int32_t vchi_bulk_queue_transmit(VCHI_SERVICE_HANDLE_T handle, ...@@ -221,7 +223,7 @@ extern int32_t vchi_bulk_queue_transmit(VCHI_SERVICE_HANDLE_T handle,
void *transfer_handle); void *transfer_handle);
/****************************************************************************** /******************************************************************************
Configuration plumbing * Configuration plumbing
*****************************************************************************/ *****************************************************************************/
#ifdef __cplusplus #ifdef __cplusplus
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment