svn commit: r324821 - head/sys/arm/arm

Michal Meloun mmel at FreeBSD.org
Sat Oct 21 15:48:18 UTC 2017


Author: mmel
Date: Sat Oct 21 15:48:16 2017
New Revision: 324821
URL: https://svnweb.freebsd.org/changeset/base/324821

Log:
  Fix spelling.
  
  Reported by:	lidl
  MFC after:	1 month

Modified:
  head/sys/arm/arm/cpuinfo.c

Modified: head/sys/arm/arm/cpuinfo.c
==============================================================================
--- head/sys/arm/arm/cpuinfo.c	Sat Oct 21 15:47:40 2017	(r324820)
+++ head/sys/arm/arm/cpuinfo.c	Sat Oct 21 15:48:16 2017	(r324821)
@@ -197,8 +197,8 @@ cpuinfo_init(void)
 	cpuinfo.icache_line_mask = cpuinfo.icache_line_size - 1;
 
 	/* Fill AT_HWCAP bits. */
-	elf_hwcap |= HWCAP_HALF | HWCAP_FAST_MULT; /* Requierd for all CPUs */
-	elf_hwcap |= HWCAP_TLS | HWCAP_EDSP;	   /* Requierd for v6+ CPUs */
+	elf_hwcap |= HWCAP_HALF | HWCAP_FAST_MULT; /* Required for all CPUs */
+	elf_hwcap |= HWCAP_TLS | HWCAP_EDSP;	   /* Required for v6+ CPUs */
 
 	tmp = (cpuinfo.id_isar0 >> 24) & 0xF;	/* Divide_instrs */
 	if (tmp >= 1)


More information about the svn-src-head mailing list