Changeset 3ee8a075 in mainline for kernel/arch/ia32/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/ia32/src/smp/mps.c
r44bec47 r3ee8a075 193 193 if (fs->config_type == 0 && fs->configuration_table) { 194 194 if (fs->mpfib2 >> 7) { 195 printf("%s: PIC mode not supported\n", __ FUNCTION__);195 printf("%s: PIC mode not supported\n", __func__); 196 196 return; 197 197 } … … 212 212 213 213 if (ct->signature != CT_SIGNATURE) { 214 printf("%s: bad ct->signature\n", __ FUNCTION__);214 printf("%s: bad ct->signature\n", __func__); 215 215 return 1; 216 216 } 217 217 if (!mps_ct_check()) { 218 printf("%s: bad ct checksum\n", __ FUNCTION__);218 printf("%s: bad ct checksum\n", __func__); 219 219 return 1; 220 220 } 221 221 if (ct->oem_table) { 222 printf("%s: ct->oem_table not supported\n", __ FUNCTION__);222 printf("%s: ct->oem_table not supported\n", __func__); 223 223 return 1; 224 224 } … … 275 275 */ 276 276 277 printf("%s: ct badness\n", __ FUNCTION__);277 printf("%s: ct badness\n", __func__); 278 278 return 1; 279 279 } … … 292 292 * Not yet implemented. 293 293 */ 294 printf("%s: not supported\n", __ FUNCTION__);294 printf("%s: not supported\n", __func__); 295 295 return 1; 296 296 }
Note:
See TracChangeset
for help on using the changeset viewer.