Skip to content

Commit

Permalink
x86 PAT: tone down debugging messages some more
Browse files Browse the repository at this point in the history
Ingo already fixed one of these at my request (in "x86 PAT: tone down
debugging messages", commit 1ebcc65),
but there was another one he missed.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Linus Torvalds committed Apr 27, 2008
1 parent 064922a commit 86cf02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/mm/pat.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,8 @@ int reserve_memtype(u64 start, u64 end, unsigned long req_type,
break;
}

printk(KERN_INFO "Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
pr_debug(KERN_INFO "Overlap at 0x%Lx-0x%Lx\n",
saved_ptr->start, saved_ptr->end);
/* No conflict. Go ahead and add this new entry */
list_add(&new_entry->nd, &saved_ptr->nd);
new_entry = NULL;
Expand Down

0 comments on commit 86cf02f

Please sign in to comment.