Changeset 3ee8a075 in mainline for kernel/arch/ia32xen/src
- Timestamp:
- 2007-06-06T20:25:51Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b781c0
- Parents:
- 44bec47
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32xen/src/smp/mps.c
r44bec47 r3ee8a075 195 195 if (fs->config_type == 0 && fs->configuration_table) { 196 196 if (fs->mpfib2 >> 7) { 197 printf("%s: PIC mode not supported\n", __ FUNCTION__);197 printf("%s: PIC mode not supported\n", __func__); 198 198 return; 199 199 } … … 214 214 215 215 if (ct->signature != CT_SIGNATURE) { 216 printf("%s: bad ct->signature\n", __ FUNCTION__);216 printf("%s: bad ct->signature\n", __func__); 217 217 return 1; 218 218 } 219 219 if (!mps_ct_check()) { 220 printf("%s: bad ct checksum\n", __ FUNCTION__);220 printf("%s: bad ct checksum\n", __func__); 221 221 return 1; 222 222 } 223 223 if (ct->oem_table) { 224 printf("%s: ct->oem_table not supported\n", __ FUNCTION__);224 printf("%s: ct->oem_table not supported\n", __func__); 225 225 return 1; 226 226 } … … 277 277 */ 278 278 279 printf("%s: ct badness\n", __ FUNCTION__);279 printf("%s: ct badness\n", __func__); 280 280 return 1; 281 281 } … … 294 294 * Not yet implemented. 295 295 */ 296 printf("%s: not supported\n", __ FUNCTION__);296 printf("%s: not supported\n", __func__); 297 297 return 1; 298 298 }
Note:
See TracChangeset
for help on using the changeset viewer.