aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorColin Percival <cperciva@FreeBSD.org>2009-07-11 22:30:37 +0000
committerColin Percival <cperciva@FreeBSD.org>2009-07-11 22:30:37 +0000
commit7d845dde8d645c3de45e82916208e7cc88488be9 (patch)
treefc0e35e98ca75b0e4e05883fa614fe1d937ffab1 /sys
parent1ed01448fbe9c77a610d006602f2bf4606f7f0d9 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/contrib/dev/acpica/compiler/aslcompile.c6
-rw-r--r--sys/contrib/dev/acpica/compiler/aslutils.c4
-rw-r--r--sys/dev/hptrr/hptrr_config.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/contrib/dev/acpica/compiler/aslcompile.c b/sys/contrib/dev/acpica/compiler/aslcompile.c
index e958f8ac4629..dda3ce3238cc 100644
--- a/sys/contrib/dev/acpica/compiler/aslcompile.c
+++ b/sys/contrib/dev/acpica/compiler/aslcompile.c
@@ -217,11 +217,11 @@ AslCompilerSignon (
"%s", CompilerId);
}
- /* Version, build date, copyright, compliance */
+ /* Version, copyright, compliance */
FlPrintFile (FileId,
- " version %X [%s]\n%s%s\n%s%s\n%s\n",
- (UINT32) ACPI_CA_VERSION, __DATE__,
+ " version %X\n%s%s\n%s%s\n%s\n",
+ (UINT32) ACPI_CA_VERSION,
Prefix, CompilerCopyright,
Prefix, CompilerCompliance,
Prefix);
diff --git a/sys/contrib/dev/acpica/compiler/aslutils.c b/sys/contrib/dev/acpica/compiler/aslutils.c
index 60414ac8b2cc..a226a3dde182 100644
--- a/sys/contrib/dev/acpica/compiler/aslutils.c
+++ b/sys/contrib/dev/acpica/compiler/aslutils.c
@@ -519,8 +519,8 @@ UtDisplaySummary (
{
/* Compiler name and version number */
- FlPrintFile (FileId, "%s version %X [%s]\n",
- CompilerId, (UINT32) ACPI_CA_VERSION, __DATE__);
+ FlPrintFile (FileId, "%s version %X\n",
+ CompilerId, (UINT32) ACPI_CA_VERSION);
}
/* Input/Output summary */
diff --git a/sys/dev/hptrr/hptrr_config.c b/sys/dev/hptrr/hptrr_config.c
index dba408d53cc0..b3cda443939c 100644
--- a/sys/dev/hptrr/hptrr_config.c
+++ b/sys/dev/hptrr/hptrr_config.c
@@ -65,7 +65,7 @@ int init_config(void)
char driver_name[] = "hptrr";
char driver_name_long[] = "RocketRAID 17xx/2xxx SATA controller driver";
-char driver_ver[] = "v1.2 (" __DATE__ " " __TIME__ ")";
+char driver_ver[] = "v1.2";
int osm_max_targets = 0xff;