Changeset 39539da in mainline for genarch/src/acpi/acpi.c


Ignore:
Timestamp:
2005-11-21T22:15:05Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8cd20b70
Parents:
db79676
Message:

Rename map_page_to_frame() to page_mapping_insert() and find_mapping() to page_mapping_find().
New names should make it more apparent that these two belong together.

File:
1 edited

Legend:

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

    rdb79676 r39539da  
    8080static void map_sdt(struct acpi_sdt_header *sdt)
    8181{
    82         map_page_to_frame((__address) sdt, (__address) sdt, PAGE_NOT_CACHEABLE, 0);
     82        page_mapping_insert((__address) sdt, (__address) sdt, PAGE_NOT_CACHEABLE, 0);
    8383        map_structure((__address) sdt, sdt->length);
    8484}
Note: See TracChangeset for help on using the changeset viewer.