Typedefing structs is not encouraged in the kernel.

The removal of typedefs was requested in interface/vchi/TODO in commit
7626e002225a4c1b9455689b1f22909dfeff43ca.

Signed-off-by: Dominic Braun <inf.br...@fau.de>
Signed-off-by: Tobias Büttner <tobias.buett...@fau.de>
---
 .../interface/vchiq_arm/vchiq_arm.c           | 21 +++---
 .../interface/vchiq_arm/vchiq_core.c          | 70 ++++++++++---------
 .../interface/vchiq_arm/vchiq_if.h            | 14 ++--
 .../interface/vchiq_arm/vchiq_ioctl.h         |  2 +-
 .../interface/vchiq_arm/vchiq_shim.c          | 14 ++--
 .../interface/vchiq_arm/vchiq_util.c          | 11 +--
 .../interface/vchiq_arm/vchiq_util.h          |  9 +--
 7 files changed, 77 insertions(+), 64 deletions(-)

diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
index 8b6544117ec7..620d5fb8322e 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
@@ -122,7 +122,7 @@ struct user_service_struct {
        struct completion insert_event;
        struct completion remove_event;
        struct completion close_event;
-       VCHIQ_HEADER_T * msg_queue[MSG_QUEUE_SIZE];
+       struct vchiq_header_struct *msg_queue[MSG_QUEUE_SIZE];
 };
 
 struct bulk_waiter_node {
@@ -544,8 +544,8 @@ vchiq_blocking_bulk_transfer(VCHIQ_SERVICE_HANDLE_T handle, 
void *data,
 
 static VCHIQ_STATUS_T
 add_completion(VCHIQ_INSTANCE_T instance, VCHIQ_REASON_T reason,
-       VCHIQ_HEADER_T *header, struct user_service_struct *user_service,
-       void *bulk_userdata)
+       struct vchiq_header_struct *header,
+       struct user_service_struct *user_service, void *bulk_userdata)
 {
        struct vchiq_completion_data_struct *completion;
        int insert;
@@ -610,8 +610,8 @@ add_completion(VCHIQ_INSTANCE_T instance, VCHIQ_REASON_T 
reason,
 ***************************************************************************/
 
 static VCHIQ_STATUS_T
-service_callback(VCHIQ_REASON_T reason, VCHIQ_HEADER_T *header,
-       VCHIQ_SERVICE_HANDLE_T handle, void *bulk_userdata)
+service_callback(VCHIQ_REASON_T reason, struct vchiq_header_struct *header,
+                VCHIQ_SERVICE_HANDLE_T handle, void *bulk_userdata)
 {
        /* How do we ensure the callback goes to the right client?
        ** The service_user data points to a user_service_struct record
@@ -1203,7 +1203,7 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned 
long arg)
                                struct vchiq_completion_data_struct *completion;
                                VCHIQ_SERVICE_T *service;
                                struct user_service_struct *user_service;
-                               VCHIQ_HEADER_T *header;
+                               struct vchiq_header_struct *header;
 
                                if (remove == instance->completion_insert)
                                        break;
@@ -1228,7 +1228,8 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned 
long arg)
                                        int msglen;
 
                                        msglen = header->size +
-                                               sizeof(VCHIQ_HEADER_T);
+                                               sizeof
+                                               (struct vchiq_header_struct);
                                        /* This must be a VCHIQ-style service */
                                        if (args.msgbufsize < msglen) {
                                                vchiq_log_error(
@@ -1322,7 +1323,7 @@ vchiq_ioctl(struct file *file, unsigned int cmd, unsigned 
long arg)
        case VCHIQ_IOC_DEQUEUE_MESSAGE: {
                struct vchiq_dequeue_message_struct args;
                struct user_service_struct *user_service;
-               VCHIQ_HEADER_T *header;
+               struct vchiq_header_struct *header;
 
                DEBUG_TRACE(DEQUEUE_MESSAGE_LINE);
                if (copy_from_user
@@ -2047,7 +2048,7 @@ static int vchiq_release(struct inode *inode, struct file 
*file)
                spin_lock(&msg_queue_spinlock);
 
                while (user_service->msg_remove != user_service->msg_insert) {
-                       VCHIQ_HEADER_T *header;
+                       struct vchiq_header_struct *header;
                        int m = user_service->msg_remove & (MSG_QUEUE_SIZE - 1);
 
                        header = user_service->msg_queue[m];
@@ -2317,7 +2318,7 @@ vchiq_videocore_wanted(VCHIQ_STATE_T *state)
 
 static VCHIQ_STATUS_T
 vchiq_keepalive_vchiq_callback(VCHIQ_REASON_T reason,
-       VCHIQ_HEADER_T *header,
+       struct vchiq_header_struct *header,
        VCHIQ_SERVICE_HANDLE_T service_user,
        void *bulk_user)
 {
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 d5651554b8cb..e4b706635e4b 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
@@ -73,8 +73,8 @@ enum {
 };
 
 /* we require this for consistency between endpoints */
-vchiq_static_assert(sizeof(VCHIQ_HEADER_T) == 8);
-vchiq_static_assert(IS_POW2(sizeof(VCHIQ_HEADER_T)));
+vchiq_static_assert(sizeof(struct vchiq_header_struct) == 8);
+vchiq_static_assert(IS_POW2(sizeof(struct vchiq_header_struct)));
 vchiq_static_assert(IS_POW2(VCHIQ_NUM_CURRENT_BULKS));
 vchiq_static_assert(IS_POW2(VCHIQ_NUM_SERVICE_BULKS));
 vchiq_static_assert(IS_POW2(VCHIQ_MAX_SERVICES));
@@ -128,7 +128,7 @@ static const char *const conn_state_names[] = {
 };
 
 static void
-release_message_sync(VCHIQ_STATE_T *state, VCHIQ_HEADER_T *header);
+release_message_sync(VCHIQ_STATE_T *state, struct vchiq_header_struct *header);
 
 static const char *msg_type_str(unsigned int msg_type)
 {
@@ -387,7 +387,7 @@ mark_service_closing(VCHIQ_SERVICE_T *service)
 
 static inline VCHIQ_STATUS_T
 make_service_callback(VCHIQ_SERVICE_T *service, VCHIQ_REASON_T reason,
-       VCHIQ_HEADER_T *header, void *bulk_userdata)
+       struct vchiq_header_struct *header, void *bulk_userdata)
 {
        VCHIQ_STATUS_T status;
 
@@ -479,11 +479,11 @@ static inline size_t
 calc_stride(size_t size)
 {
        /* Allow room for the header */
-       size += sizeof(VCHIQ_HEADER_T);
+       size += sizeof(struct vchiq_header_struct);
 
        /* Round up */
-       return (size + sizeof(VCHIQ_HEADER_T) - 1) & ~(sizeof(VCHIQ_HEADER_T)
-               - 1);
+       return (size + sizeof(struct vchiq_header_struct) - 1) &
+               ~(sizeof(struct vchiq_header_struct) - 1);
 }
 
 /* Called by the slot handler thread */
@@ -557,7 +557,7 @@ request_poll(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T 
*service, int poll_type)
 
 /* Called from queue_message, by the slot handler and application threads,
 ** with slot_mutex held */
-static VCHIQ_HEADER_T *
+static struct vchiq_header_struct *
 reserve_space(VCHIQ_STATE_T *state, size_t space, int is_blocking)
 {
        VCHIQ_SHARED_STATE_T *local = state->local;
@@ -565,13 +565,13 @@ reserve_space(VCHIQ_STATE_T *state, size_t space, int 
is_blocking)
        int slot_space = VCHIQ_SLOT_SIZE - (tx_pos & VCHIQ_SLOT_MASK);
 
        if (space > slot_space) {
-               VCHIQ_HEADER_T *header;
+               struct vchiq_header_struct *header;
                /* Fill the remaining space with padding */
                WARN_ON(state->tx_data == NULL);
-               header = (VCHIQ_HEADER_T *)
+               header = (struct vchiq_header_struct *)
                        (state->tx_data + (tx_pos & VCHIQ_SLOT_MASK));
                header->msgid = VCHIQ_MSGID_PADDING;
-               header->size = slot_space - sizeof(VCHIQ_HEADER_T);
+               header->size = slot_space - sizeof(struct vchiq_header_struct);
 
                tx_pos += slot_space;
        }
@@ -613,7 +613,8 @@ reserve_space(VCHIQ_STATE_T *state, size_t space, int 
is_blocking)
 
        state->local_tx_pos = tx_pos + space;
 
-       return (VCHIQ_HEADER_T *)(state->tx_data + (tx_pos & VCHIQ_SLOT_MASK));
+       return (struct vchiq_header_struct *)(state->tx_data +
+                                               (tx_pos & VCHIQ_SLOT_MASK));
 }
 
 /* Called by the recycle thread. */
@@ -658,8 +659,8 @@ process_free_queue(VCHIQ_STATE_T *state, BITSET_T 
*service_found, size_t length)
                pos = 0;
 
                while (pos < VCHIQ_SLOT_SIZE) {
-                       VCHIQ_HEADER_T *header =
-                               (VCHIQ_HEADER_T *)(data + pos);
+                       struct vchiq_header_struct *header =
+                               (struct vchiq_header_struct *)(data + pos);
                        int msgid = header->msgid;
 
                        if (VCHIQ_MSG_TYPE(msgid) == VCHIQ_MSG_DATA) {
@@ -813,7 +814,7 @@ queue_message(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T 
*service,
 {
        VCHIQ_SHARED_STATE_T *local;
        VCHIQ_SERVICE_QUOTA_T *service_quota = NULL;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
        int type = VCHIQ_MSG_TYPE(msgid);
 
        size_t stride;
@@ -1062,7 +1063,7 @@ queue_message_sync(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T 
*service,
        int is_blocking)
 {
        VCHIQ_SHARED_STATE_T *local;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
        ssize_t callback_result;
 
        local = state->local;
@@ -1075,7 +1076,7 @@ queue_message_sync(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T 
*service,
 
        rmb();
 
-       header = (VCHIQ_HEADER_T *)SLOT_DATA_FROM_INDEX(state,
+       header = (struct vchiq_header_struct *)SLOT_DATA_FROM_INDEX(state,
                local->slot_sync);
 
        {
@@ -1154,7 +1155,7 @@ claim_slot(VCHIQ_SLOT_INFO_T *slot)
 
 static void
 release_slot(VCHIQ_STATE_T *state, VCHIQ_SLOT_INFO_T *slot_info,
-       VCHIQ_HEADER_T *header, VCHIQ_SERVICE_T *service)
+       struct vchiq_header_struct *header, VCHIQ_SERVICE_T *service)
 {
        int release_count;
 
@@ -1408,7 +1409,7 @@ abort_outstanding_bulks(VCHIQ_SERVICE_T *service,
 }
 
 static int
-parse_open(VCHIQ_STATE_T *state, VCHIQ_HEADER_T *header)
+parse_open(VCHIQ_STATE_T *state, struct vchiq_header_struct *header)
 {
        VCHIQ_SERVICE_T *service = NULL;
        int msgid, size;
@@ -1541,7 +1542,7 @@ parse_rx_slots(VCHIQ_STATE_T *state)
        tx_pos = remote->tx_pos;
 
        while (state->rx_pos != tx_pos) {
-               VCHIQ_HEADER_T *header;
+               struct vchiq_header_struct *header;
                int msgid, size;
                int type;
                unsigned int localport, remoteport;
@@ -1565,7 +1566,7 @@ parse_rx_slots(VCHIQ_STATE_T *state)
                        state->rx_info->release_count = 0;
                }
 
-               header = (VCHIQ_HEADER_T *)(state->rx_data +
+               header = (struct vchiq_header_struct *)(state->rx_data +
                        (state->rx_pos & VCHIQ_SLOT_MASK));
                DEBUG_VALUE(PARSE_HEADER, (int)(long)header);
                msgid = header->msgid;
@@ -1993,8 +1994,9 @@ sync_func(void *v)
 {
        VCHIQ_STATE_T *state = (VCHIQ_STATE_T *) v;
        VCHIQ_SHARED_STATE_T *local = state->local;
-       VCHIQ_HEADER_T *header = (VCHIQ_HEADER_T *)SLOT_DATA_FROM_INDEX(state,
-               state->remote->slot_sync);
+       struct vchiq_header_struct *header =
+               (struct vchiq_header_struct *)SLOT_DATA_FROM_INDEX(state,
+                       state->remote->slot_sync);
 
        while (1) {
                VCHIQ_SERVICE_T *service;
@@ -2248,8 +2250,9 @@ vchiq_init_state(VCHIQ_STATE_T *state, VCHIQ_SLOT_ZERO_T 
*slot_zero)
        remote_event_create(&local->sync_release);
 
        /* At start-of-day, the slot is empty and available */
-       ((VCHIQ_HEADER_T *)SLOT_DATA_FROM_INDEX(state, local->slot_sync))->msgid
-               = VCHIQ_MSGID_PADDING;
+       ((struct vchiq_header_struct *)
+               SLOT_DATA_FROM_INDEX(state, local->slot_sync))->msgid =
+                                                       VCHIQ_MSGID_PADDING;
        remote_event_signal_local(state, &local->sync_release);
 
        local->debug[DEBUG_ENTRIES] = DEBUG_MAX;
@@ -2500,9 +2503,10 @@ release_service_messages(VCHIQ_SERVICE_T *service)
        /* Release any claimed messages aimed at this service */
 
        if (service->sync) {
-               VCHIQ_HEADER_T *header =
-                       (VCHIQ_HEADER_T *)SLOT_DATA_FROM_INDEX(state,
-                                               state->remote->slot_sync);
+               struct vchiq_header_struct *header =
+                       (struct vchiq_header_struct *)
+                       SLOT_DATA_FROM_INDEX(state,
+                                            state->remote->slot_sync);
                if (VCHIQ_MSG_DSTPORT(header->msgid) == service->localport)
                        release_message_sync(state, header);
 
@@ -2526,8 +2530,9 @@ release_service_messages(VCHIQ_SERVICE_T *service)
                        pos = 0;
 
                        while (pos < end) {
-                               VCHIQ_HEADER_T *header =
-                                       (VCHIQ_HEADER_T *)(data + pos);
+                               struct vchiq_header_struct *header =
+                                       (struct vchiq_header_struct *)(data +
+                                                                       pos);
                                int msgid = header->msgid;
                                int port = VCHIQ_MSG_DSTPORT(msgid);
 
@@ -3232,7 +3237,8 @@ vchiq_queue_message(VCHIQ_SERVICE_HANDLE_T handle,
 }
 
 void
-vchiq_release_message(VCHIQ_SERVICE_HANDLE_T handle, VCHIQ_HEADER_T *header)
+vchiq_release_message(VCHIQ_SERVICE_HANDLE_T handle,
+                     struct vchiq_header_struct *header)
 {
        VCHIQ_SERVICE_T *service = find_service_by_handle(handle);
        VCHIQ_SHARED_STATE_T *remote;
@@ -3264,7 +3270,7 @@ vchiq_release_message(VCHIQ_SERVICE_HANDLE_T handle, 
VCHIQ_HEADER_T *header)
 }
 
 static void
-release_message_sync(VCHIQ_STATE_T *state, VCHIQ_HEADER_T *header)
+release_message_sync(VCHIQ_STATE_T *state, struct vchiq_header_struct *header)
 {
        header->msgid = VCHIQ_MSGID_PADDING;
        remote_event_signal(&state->remote->sync_release);
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_if.h 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_if.h
index e01bc743151d..b97d17159b60 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_if.h
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_if.h
@@ -37,7 +37,8 @@
 #define VCHIQ_SERVICE_HANDLE_INVALID 0
 
 #define VCHIQ_SLOT_SIZE     4096
-#define VCHIQ_MAX_MSG_SIZE  (VCHIQ_SLOT_SIZE - sizeof(VCHIQ_HEADER_T))
+#define VCHIQ_MAX_MSG_SIZE  (VCHIQ_SLOT_SIZE - \
+                                       sizeof(struct vchiq_header_struct))
 #define VCHIQ_CHANNEL_SIZE  VCHIQ_MAX_MSG_SIZE /* For backwards compatibility 
*/
 
 #define VCHIQ_MAKE_FOURCC(x0, x1, x2, x3) \
@@ -76,7 +77,7 @@ typedef enum {
        VCHIQ_SERVICE_OPTION_TRACE
 } VCHIQ_SERVICE_OPTION_T;
 
-typedef struct vchiq_header_struct {
+struct vchiq_header_struct {
        /* The message identifier - opaque to applications. */
        int msgid;
 
@@ -84,7 +85,7 @@ typedef struct vchiq_header_struct {
        unsigned int size;
 
        char data[0];           /* message */
-} VCHIQ_HEADER_T;
+};
 
 struct vchiq_element {
        const void __user *data;
@@ -93,8 +94,9 @@ struct vchiq_element {
 
 typedef unsigned int VCHIQ_SERVICE_HANDLE_T;
 
-typedef VCHIQ_STATUS_T (*VCHIQ_CALLBACK_T)(VCHIQ_REASON_T, VCHIQ_HEADER_T *,
-       VCHIQ_SERVICE_HANDLE_T, void *);
+typedef VCHIQ_STATUS_T (*VCHIQ_CALLBACK_T)(VCHIQ_REASON_T,
+                                               struct vchiq_header_struct *,
+                                               VCHIQ_SERVICE_HANDLE_T, void *);
 
 typedef struct vchiq_service_base_struct {
        int fourcc;
@@ -146,7 +148,7 @@ vchiq_queue_message(VCHIQ_SERVICE_HANDLE_T handle,
                    void *context,
                    size_t size);
 extern void           vchiq_release_message(VCHIQ_SERVICE_HANDLE_T service,
-       VCHIQ_HEADER_T *header);
+       struct vchiq_header_struct *header);
 extern VCHIQ_STATUS_T vchiq_bulk_transmit(VCHIQ_SERVICE_HANDLE_T service,
        const void *data, unsigned int size, void *userdata,
        VCHIQ_BULK_MODE_T mode);
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_ioctl.h 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_ioctl.h
index d6dbc2016dbe..9757b58e867e 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_ioctl.h
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_ioctl.h
@@ -63,7 +63,7 @@ typedef struct {
 
 struct vchiq_completion_data_struct {
        VCHIQ_REASON_T reason;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
        void *service_userdata;
        void *bulk_userdata;
 };
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
index 6e66a2a43782..1a2a96cd60ff 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_shim.c
@@ -72,7 +72,7 @@ int32_t vchi_msg_peek(VCHI_SERVICE_HANDLE_T handle,
        VCHI_FLAGS_T flags)
 {
        struct shim_service *service = (struct shim_service *)handle;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
 
        WARN_ON((flags != VCHI_FLAGS_NONE) &&
                (flags != VCHI_FLAGS_BLOCK_UNTIL_OP_COMPLETE));
@@ -104,7 +104,7 @@ EXPORT_SYMBOL(vchi_msg_peek);
 int32_t vchi_msg_remove(VCHI_SERVICE_HANDLE_T handle)
 {
        struct shim_service *service = (struct shim_service *)handle;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
 
        header = vchiu_queue_pop(&service->queue);
 
@@ -357,7 +357,7 @@ int32_t vchi_msg_dequeue(VCHI_SERVICE_HANDLE_T handle,
        VCHI_FLAGS_T flags)
 {
        struct shim_service *service = (struct shim_service *)handle;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
 
        WARN_ON((flags != VCHI_FLAGS_NONE) &&
                (flags != VCHI_FLAGS_BLOCK_UNTIL_OP_COMPLETE));
@@ -401,7 +401,7 @@ int32_t vchi_held_msg_release(struct vchi_held_msg *message)
         */
 
        vchiq_release_message((VCHIQ_SERVICE_HANDLE_T)(long)message->service,
-                             (VCHIQ_HEADER_T *)message->message);
+                             (struct vchiq_header_struct *)message->message);
 
        return 0;
 }
@@ -431,7 +431,7 @@ int32_t vchi_msg_hold(VCHI_SERVICE_HANDLE_T handle,
        struct vchi_held_msg *message_handle)
 {
        struct shim_service *service = (struct shim_service *)handle;
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
 
        WARN_ON((flags != VCHI_FLAGS_NONE) &&
                (flags != VCHI_FLAGS_BLOCK_UNTIL_OP_COMPLETE));
@@ -540,7 +540,9 @@ EXPORT_SYMBOL(vchi_disconnect);
  ***********************************************************/
 
 static VCHIQ_STATUS_T shim_callback(VCHIQ_REASON_T reason,
-       VCHIQ_HEADER_T *header, VCHIQ_SERVICE_HANDLE_T handle, void *bulk_user)
+                                   struct vchiq_header_struct *header,
+                                   VCHIQ_SERVICE_HANDLE_T handle,
+                                   void *bulk_user)
 {
        struct shim_service *service =
                (struct shim_service *)VCHIQ_GET_SERVICE_USERDATA(handle);
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.c 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.c
index 4b8554bc647e..3fddd47aac58 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.c
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.c
@@ -51,7 +51,8 @@ int vchiu_queue_init(VCHIU_QUEUE_T *queue, int size)
        init_completion(&queue->pop);
        init_completion(&queue->push);
 
-       queue->storage = kcalloc(size, sizeof(VCHIQ_HEADER_T *), GFP_KERNEL);
+       queue->storage = kcalloc(size, sizeof(struct vchiq_header_struct *),
+                                GFP_KERNEL);
        if (!queue->storage) {
                vchiu_queue_delete(queue);
                return 0;
@@ -74,7 +75,7 @@ int vchiu_queue_is_full(VCHIU_QUEUE_T *queue)
        return queue->write == queue->read + queue->size;
 }
 
-void vchiu_queue_push(VCHIU_QUEUE_T *queue, VCHIQ_HEADER_T *header)
+void vchiu_queue_push(VCHIU_QUEUE_T *queue, struct vchiq_header_struct *header)
 {
        if (!queue->initialized)
                return;
@@ -90,7 +91,7 @@ void vchiu_queue_push(VCHIU_QUEUE_T *queue, VCHIQ_HEADER_T 
*header)
        complete(&queue->push);
 }
 
-VCHIQ_HEADER_T *vchiu_queue_peek(VCHIU_QUEUE_T *queue)
+struct vchiq_header_struct *vchiu_queue_peek(VCHIU_QUEUE_T *queue)
 {
        while (queue->write == queue->read) {
                if (wait_for_completion_interruptible(&queue->push))
@@ -102,9 +103,9 @@ VCHIQ_HEADER_T *vchiu_queue_peek(VCHIU_QUEUE_T *queue)
        return queue->storage[queue->read & (queue->size - 1)];
 }
 
-VCHIQ_HEADER_T *vchiu_queue_pop(VCHIU_QUEUE_T *queue)
+struct vchiq_header_struct *vchiu_queue_pop(VCHIU_QUEUE_T *queue)
 {
-       VCHIQ_HEADER_T *header;
+       struct vchiq_header_struct *header;
 
        while (queue->write == queue->read) {
                if (wait_for_completion_interruptible(&queue->push))
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.h 
b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.h
index b226227fe5bc..7fb8746c0e1b 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.h
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.h
@@ -63,7 +63,7 @@ typedef struct {
        struct completion pop;
        struct completion push;
 
-       VCHIQ_HEADER_T **storage;
+       struct vchiq_header_struct **storage;
 } VCHIU_QUEUE_T;
 
 extern int  vchiu_queue_init(VCHIU_QUEUE_T *queue, int size);
@@ -72,9 +72,10 @@ extern void vchiu_queue_delete(VCHIU_QUEUE_T *queue);
 extern int vchiu_queue_is_empty(VCHIU_QUEUE_T *queue);
 extern int vchiu_queue_is_full(VCHIU_QUEUE_T *queue);
 
-extern void vchiu_queue_push(VCHIU_QUEUE_T *queue, VCHIQ_HEADER_T *header);
+extern void vchiu_queue_push(VCHIU_QUEUE_T *queue,
+                            struct vchiq_header_struct *header);
 
-extern VCHIQ_HEADER_T *vchiu_queue_peek(VCHIU_QUEUE_T *queue);
-extern VCHIQ_HEADER_T *vchiu_queue_pop(VCHIU_QUEUE_T *queue);
+extern struct vchiq_header_struct *vchiu_queue_peek(VCHIU_QUEUE_T *queue);
+extern struct vchiq_header_struct *vchiu_queue_pop(VCHIU_QUEUE_T *queue);
 
 #endif
-- 
2.17.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to