Ignore:
Timestamp:
2017-10-17T13:11:35Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60af4cdb
Parents:
dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/sun4v/as.c

    rdbf32b1 r95c675b  
    3737#include <arch/mm/pagesize.h>
    3838#include <arch/mm/tlb.h>
     39#include <assert.h>
    3940#include <genarch/mm/page_ht.h>
    4041#include <genarch/mm/asid_fifo.h>
    41 #include <debug.h>
    4242#include <config.h>
    4343#include <arch/sun4v/hypercall.h>
     
    5050#include <bitops.h>
    5151#include <macros.h>
    52 #include <memstr.h>
     52#include <mem.h>
    5353
    5454#endif /* CONFIG_TSB */
     
    121121        uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
    122122       
    123         ASSERT(as->arch.tsb_description.tsb_base);
     123        assert(as->arch.tsb_description.tsb_base);
    124124        uintptr_t tsb = PA2KA(as->arch.tsb_description.tsb_base);
    125125       
     
    160160        uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
    161161       
    162         ASSERT(as->arch.tsb_description.tsb_base);
     162        assert(as->arch.tsb_description.tsb_base);
    163163       
    164164        uintptr_t tsb = PA2KA(as->arch.tsb_description.tsb_base);
Note: See TracChangeset for help on using the changeset viewer.