Commit 1ee64912 authored by Yamanappagouda Patil's avatar Yamanappagouda Patil Committed by Greg Kroah-Hartman

staging: vc04_services: Fixed "space prohibited after that open/close parenthesis" erros.

Fixed checkpath.pl erros "space prohibited after that open/close parenthesis" in vchiq_version.c file.
Signed-off-by: default avatarYamanappagouda Patil <goudapatilk@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0169acae
......@@ -33,27 +33,27 @@
#include "vchiq_build_info.h"
#include <linux/broadcom/vc_debug_sym.h>
VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_hostname, "dc4-arm-01" );
VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_version, "9245b4c35b99b3870e1f7dc598c5692b3c66a6f0 (tainted)" );
VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_time, __TIME__ );
VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_date, __DATE__ );
VC_DEBUG_DECLARE_STRING_VAR(vchiq_build_hostname, "dc4-arm-01");
VC_DEBUG_DECLARE_STRING_VAR(vchiq_build_version, "9245b4c35b99b3870e1f7dc598c5692b3c66a6f0 (tainted)");
VC_DEBUG_DECLARE_STRING_VAR(vchiq_build_time, __TIME__);
VC_DEBUG_DECLARE_STRING_VAR(vchiq_build_date, __DATE__);
const char *vchiq_get_build_hostname( void )
const char *vchiq_get_build_hostname(void)
{
return vchiq_build_hostname;
}
const char *vchiq_get_build_version( void )
const char *vchiq_get_build_version(void)
{
return vchiq_build_version;
}
const char *vchiq_get_build_date( void )
const char *vchiq_get_build_date(void)
{
return vchiq_build_date;
}
const char *vchiq_get_build_time( void )
const char *vchiq_get_build_time(void)
{
return vchiq_build_time;
}
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