powerpc/pmap: Remove some debug from r361544

This commit is contained in:
Justin Hibbits 2020-05-28 03:08:50 +00:00
parent 9b51a10a9c
commit 9a47dfc308
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=361570

View File

@ -205,19 +205,15 @@ pmap_mmu_install(char *name, int prio)
mmu_t *mmupp, mmup;
static int curr_prio = 0;
printf("Trying to install pmap %s\n", name);
/*
* Try and locate the MMU kobj corresponding to the name
*/
SET_FOREACH(mmupp, mmu_set) {
mmup = *mmupp;
printf("Checking %s(%p)\n", mmup->name, mmup->name);
if (mmup->name &&
!strcmp(mmup->name, name) &&
(prio >= curr_prio || mmu_obj == NULL)) {
printf("match found: %p\n", mmup);
curr_prio = prio;
mmu_obj = mmup;
return (TRUE);