Commit 823568cf authored by Nicolas Saenz Julienne's avatar Nicolas Saenz Julienne Committed by Greg Kroah-Hartman

staging: vchi: Expose struct vchi_service

This will make further changes easier. The struct will ultimately
disappear.
Signed-off-by: default avatarNicolas Saenz Julienne <nsaenzjulienne@suse.de>
Link: https://lore.kernel.org/r/20200629150945.10720-26-nsaenzjulienne@suse.deSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 460165c6
...@@ -29,6 +29,13 @@ struct vchi_held_msg { ...@@ -29,6 +29,13 @@ struct vchi_held_msg {
void *message; void *message;
}; };
struct vchi_service {
unsigned int handle;
vchi_callback callback;
void *callback_param;
};
// structure used to provide the information needed to open a server or a client // structure used to provide the information needed to open a server or a client
struct service_creation { struct service_creation {
struct vchi_version version; struct vchi_version version;
...@@ -40,9 +47,6 @@ struct service_creation { ...@@ -40,9 +47,6 @@ struct service_creation {
// Opaque handle for a VCHIQ instance // Opaque handle for a VCHIQ instance
struct vchiq_instance; struct vchiq_instance;
// Opaque handle for a server or client
struct vchi_service;
/****************************************************************************** /******************************************************************************
* Global funcs - implementation is specific to which side you are on * Global funcs - implementation is specific to which side you are on
* (local / remote) * (local / remote)
......
...@@ -10,13 +10,6 @@ ...@@ -10,13 +10,6 @@
#include "vchiq.h" #include "vchiq.h"
#include "vchiq_core.h" #include "vchiq_core.h"
struct vchi_service {
unsigned int handle;
vchi_callback callback;
void *callback_param;
};
int vchi_queue_kernel_message(struct vchi_service *service, void *data, int vchi_queue_kernel_message(struct vchi_service *service, void *data,
unsigned int size) unsigned int size)
{ {
......
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