Changeset b1cf98c in mainline for arch/ia32/src/acpi/acpi.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/acpi/acpi.c

    r2e5f770 rb1cf98c  
    109109
    110110rsdp_found:
    111         printf("%L: ACPI Root System Description Pointer\n", acpi_rsdp);
     111        printf("%P: ACPI Root System Description Pointer\n", acpi_rsdp);
    112112
    113113        acpi_rsdt = (struct acpi_rsdt *) (__native) acpi_rsdp->rsdt_address;
     
    144144                                        goto next;
    145145                                *signature_map[j].sdt_ptr = h;
    146                                 printf("%L: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
     146                                printf("%P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
    147147                        }
    148148                }
     
    165165                                        goto next;
    166166                                *signature_map[j].sdt_ptr = h;
    167                                 printf("%L: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
     167                                printf("%P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
    168168                        }
    169169                }
Note: See TracChangeset for help on using the changeset viewer.