Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2461 → Rev 2462

/trunk/kernel/arch/ia32xen/src/smp/mps.c
194,7 → 194,7
 
if (fs->config_type == 0 && fs->configuration_table) {
if (fs->mpfib2 >> 7) {
printf("%s: PIC mode not supported\n", __FUNCTION__);
printf("%s: PIC mode not supported\n", __func__);
return;
}
 
213,15 → 213,15
int i, cnt;
if (ct->signature != CT_SIGNATURE) {
printf("%s: bad ct->signature\n", __FUNCTION__);
printf("%s: bad ct->signature\n", __func__);
return 1;
}
if (!mps_ct_check()) {
printf("%s: bad ct checksum\n", __FUNCTION__);
printf("%s: bad ct checksum\n", __func__);
return 1;
}
if (ct->oem_table) {
printf("%s: ct->oem_table not supported\n", __FUNCTION__);
printf("%s: ct->oem_table not supported\n", __func__);
return 1;
}
276,7 → 276,7
* Something is wrong. Fallback to UP mode.
*/
printf("%s: ct badness\n", __FUNCTION__);
printf("%s: ct badness\n", __func__);
return 1;
}
}
293,7 → 293,7
/*
* Not yet implemented.
*/
printf("%s: not supported\n", __FUNCTION__);
printf("%s: not supported\n", __func__);
return 1;
}