aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYannick Guerrini <[email protected]>2015-02-21 23:41:50 +0100
committerIngo Molnar <[email protected]>2015-02-22 08:55:58 +0100
commita927792c196f1c24410f3c12ccf45238a353783a (patch)
treee123446a854a6a75b29249cec3c034a99957be1a
parent570e1aa84c376ff39809442f09c7606ddf62cfd1 (diff)
x86/cpu/intel: Fix trivial typo in intel_tlb_table[]
Change 'ssociative' to 'associative' Signed-off-by: Yannick Guerrini <[email protected]> Cc: Borislav Petkov <[email protected]> Cc: Bryan O'Donoghue <[email protected]> Cc: Chris Bainbridge <[email protected]> Cc: Dave Hansen <[email protected]> Cc: Steven Honeyman <[email protected]> Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--arch/x86/kernel/cpu/intel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index 94d7dcb12145..50163fa9034f 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -565,8 +565,8 @@ static const struct _tlb_table intel_tlb_table[] = {
{ 0xb2, TLB_INST_4K, 64, " TLB_INST 4KByte pages, 4-way set associative" },
{ 0xb3, TLB_DATA_4K, 128, " TLB_DATA 4 KByte pages, 4-way set associative" },
{ 0xb4, TLB_DATA_4K, 256, " TLB_DATA 4 KByte pages, 4-way associative" },
- { 0xb5, TLB_INST_4K, 64, " TLB_INST 4 KByte pages, 8-way set ssociative" },
- { 0xb6, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 8-way set ssociative" },
+ { 0xb5, TLB_INST_4K, 64, " TLB_INST 4 KByte pages, 8-way set associative" },
+ { 0xb6, TLB_INST_4K, 128, " TLB_INST 4 KByte pages, 8-way set associative" },
{ 0xba, TLB_DATA_4K, 64, " TLB_DATA 4 KByte pages, 4-way associative" },
{ 0xc0, TLB_DATA_4K_4M, 8, " TLB_DATA 4 KByte and 4 MByte pages, 4-way associative" },
{ 0xc1, STLB_4K_2M, 1024, " STLB 4 KByte and 2 MByte pages, 8-way associative" },