Subversion Repositories HelenOS-historic

Rev

Rev 615 | Rev 1576 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 615 Rev 1221
Line 185... Line 185...
185
    }
185
    }
186
 
186
 
187
    return;
187
    return;
188
   
188
   
189
fs_found:
189
fs_found:
190
    printf("%P: MPS Floating Pointer Structure\n", fs);
190
    printf("%p: MPS Floating Pointer Structure\n", fs);
191
 
191
 
192
    if (fs->config_type == 0 && fs->configuration_table) {
192
    if (fs->config_type == 0 && fs->configuration_table) {
193
        if (fs->mpfib2 >> 7) {
193
        if (fs->mpfib2 >> 7) {
194
            printf("%s: PIC mode not supported\n", __FUNCTION__);
194
            printf("%s: PIC mode not supported\n", __FUNCTION__);
195
            return;
195
            return;
Line 404... Line 404...
404
    __u8 *cur;
404
    __u8 *cur;
405
 
405
 
406
    for (cur = ext; cur < ext + ct->ext_table_length; cur += cur[CT_EXT_ENTRY_LEN]) {
406
    for (cur = ext; cur < ext + ct->ext_table_length; cur += cur[CT_EXT_ENTRY_LEN]) {
407
        switch (cur[CT_EXT_ENTRY_TYPE]) {
407
        switch (cur[CT_EXT_ENTRY_TYPE]) {
408
            default:
408
            default:
409
                printf("%P: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
409
                printf("%p: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
410
                break;
410
                break;
411
        }
411
        }
412
    }
412
    }
413
}
413
}
414
 
414