Changeset b1cf98c in mainline for arch/ia32/src/smp/mps.c


Ignore:
Timestamp:
2005-09-13T20:02:26Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d6dcdd2e
Parents:
2e5f770
Message:

Documentation updates for amd64, mips32 and ia32.

Replace %L with %P printf() formatter in MPS and ACPI detection functions to print addresses in maximal width.

Tweak memmap.S and IA-32 and AMd64 boot.S.
Cancel unneeded instructions.
Replace cmpl $0, %ebx with testl %ebx, %ebx.
Move memmap.S data to K_DATA_START section.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/smp/mps.c

    r2e5f770 rb1cf98c  
    186186       
    187187fs_found:
    188         printf("%L: MPS Floating Pointer Structure\n", fs);
     188        printf("%P: MPS Floating Pointer Structure\n", fs);
    189189
    190190        frame_not_free((__address) fs);
     
    408408                switch (cur[CT_EXT_ENTRY_TYPE]) {
    409409                        default:
    410                                 printf("%L: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
     410                                printf("%P: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
    411411                                break;
    412412                }
Note: See TracChangeset for help on using the changeset viewer.