Skip to content

Commit

Permalink
mm: tlb.c: Fix error message
Browse files Browse the repository at this point in the history
This fixes a typo in two error messages, from "Reigster" to
"Register".

Signed-off-by: Nik Nyby <nikolas@gnu.org>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
  • Loading branch information
Nik Nyby authored and Jiri Kosina committed Aug 7, 2015
1 parent d31e771 commit 5e49e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/ia64/mm/tlb.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size)
if (p->pte & 0x1)
if (is_tr_overlap(p, va, log_size)) {
printk(KERN_DEBUG "Overlapped Entry"
"Inserted for TR Reigster!!\n");
"Inserted for TR Register!!\n");
goto out;
}
}
Expand All @@ -456,7 +456,7 @@ int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size)
if (p->pte & 0x1)
if (is_tr_overlap(p, va, log_size)) {
printk(KERN_DEBUG "Overlapped Entry"
"Inserted for TR Reigster!!\n");
"Inserted for TR Register!!\n");
goto out;
}
}
Expand Down

0 comments on commit 5e49e39

Please sign in to comment.