summaryrefslogtreecommitdiffstats
path: root/sys/contrib
diff options
context:
space:
mode:
authorgonzo <gonzo@FreeBSD.org>2017-05-08 19:22:59 +0000
committergonzo <gonzo@FreeBSD.org>2017-05-08 19:22:59 +0000
commit497902cc8c18e1b82992f4c4e2e02c86c5a518a0 (patch)
tree3370b1df671864d9bb50a8ee369b3bc2f5b28f57 /sys/contrib
parentf8b2253cad4d2da29fac3ed8cf9e226a9f020063 (diff)
downloadFreeBSD-src-497902cc8c18e1b82992f4c4e2e02c86c5a518a0.zip
FreeBSD-src-497902cc8c18e1b82992f4c4e2e02c86c5a518a0.tar.gz
MFC r310560:
[vchi] replace non-reproducible __DATE__/__TIME__ with hardcoded string Although vchiq_build_date and vchiq_build_time are not used in current vchi driver at the moment, make sure these value will not leak into build later on if at some point they will be refered in some new imported code PR: 215494 Reported by: emaste
Diffstat (limited to 'sys/contrib')
-rw-r--r--sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c b/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c
index b6bfa21..df95d5e 100644
--- a/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c
+++ b/sys/contrib/vchiq/interface/vchiq_arm/vchiq_version.c
@@ -35,8 +35,8 @@
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_time, "not available" );
+VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_date, "not available" );
const char *vchiq_get_build_hostname( void )
{
OpenPOWER on IntegriCloud