Changeset 280a27e in mainline for genarch/src/acpi/acpi.c


Ignore:
Timestamp:
2006-04-16T13:16:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50de918
Parents:
c624b96
Message:

Printf ported back from uspace to kernel.
Printf calls changed to match new conventions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/acpi/acpi.c

    rc624b96 r280a27e  
    9797                                        goto next;
    9898                                *signature_map[j].sdt_ptr = h;
    99                                 printf("%P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
     99                                printf("%#zX: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
    100100                        }
    101101                }
     
    118118                                        goto next;
    119119                                *signature_map[j].sdt_ptr = h;
    120                                 printf("%P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
     120                                printf("%#zX: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
    121121                        }
    122122                }
     
    152152
    153153rsdp_found:
    154         printf("%P: ACPI Root System Description Pointer\n", acpi_rsdp);
     154        printf("%#zX: ACPI Root System Description Pointer\n", acpi_rsdp);
    155155
    156156        acpi_rsdt = (struct acpi_rsdt *) (__native) acpi_rsdp->rsdt_address;
Note: See TracChangeset for help on using the changeset viewer.