mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-11 05:17:10 +09:00
staging: vchi: Get rid of vchi_service_destroy()
The function has no users. Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de> Link: https://lore.kernel.org/r/20200527115400.31391-2-nsaenzjulienne@suse.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
549d2db702
commit
ddf0f124ae
@@ -83,9 +83,6 @@ extern uint32_t vchi_current_time(struct vchi_instance_handle *instance_handle);
|
||||
/******************************************************************************
|
||||
* Global service API
|
||||
*****************************************************************************/
|
||||
// Routine to destroy a service
|
||||
extern int32_t vchi_service_destroy(const struct vchi_service_handle *handle);
|
||||
|
||||
// Routine to open a named service
|
||||
extern int32_t vchi_service_open(struct vchi_instance_handle *instance_handle,
|
||||
struct service_creation *setup,
|
||||
|
||||
@@ -642,25 +642,6 @@ int32_t vchi_service_close(const struct vchi_service_handle *handle)
|
||||
}
|
||||
EXPORT_SYMBOL(vchi_service_close);
|
||||
|
||||
int32_t vchi_service_destroy(const struct vchi_service_handle *handle)
|
||||
{
|
||||
int32_t ret = -1;
|
||||
struct shim_service *service = (struct shim_service *)handle;
|
||||
|
||||
if (service) {
|
||||
enum vchiq_status status = vchiq_remove_service(service->handle);
|
||||
|
||||
if (status == VCHIQ_SUCCESS) {
|
||||
service_free(service);
|
||||
service = NULL;
|
||||
}
|
||||
|
||||
ret = vchiq_status_to_vchi(status);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(vchi_service_destroy);
|
||||
|
||||
int32_t vchi_service_set_option(const struct vchi_service_handle *handle,
|
||||
enum vchi_service_option option,
|
||||
int value)
|
||||
|
||||
Reference in New Issue
Block a user