staging: vc04_services: make local functions static

The functions vchiq_dump_shared_state() and vchiq_is_connected() are only
used locally. So make them static.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Stefan Wahren 2017-01-08 18:15:12 +00:00 committed by Greg Kroah-Hartman
parent c98a5a0f1c
commit c5520ee074
2 changed files with 2 additions and 2 deletions

View file

@ -3626,7 +3626,7 @@ vchiq_set_service_option(VCHIQ_SERVICE_HANDLE_T handle,
return status;
}
void
static void
vchiq_dump_shared_state(void *dump_context, VCHIQ_STATE_T *state,
VCHIQ_SHARED_STATE_T *shared, const char *label)
{

View file

@ -172,7 +172,7 @@ EXPORT_SYMBOL(vchiq_shutdown);
*
***************************************************************************/
int vchiq_is_connected(VCHIQ_INSTANCE_T instance)
static int vchiq_is_connected(VCHIQ_INSTANCE_T instance)
{
return instance->connected;
}