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/sun4u/as.c

    rdbf32b1 r95c675b  
    3535#include <arch/mm/as.h>
    3636#include <arch/mm/tlb.h>
     37#include <assert.h>
     38#include <config.h>
    3739#include <genarch/mm/page_ht.h>
    3840#include <genarch/mm/asid_fifo.h>
    39 #include <debug.h>
    40 #include <config.h>
    4141
    4242#ifdef CONFIG_TSB
     
    4747#include <bitops.h>
    4848#include <macros.h>
    49 #include <memstr.h>
     49#include <mem.h>
    5050
    5151#endif /* CONFIG_TSB */
     
    130130        uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
    131131       
    132         ASSERT(as->arch.itsb);
    133         ASSERT(as->arch.dtsb);
     132        assert(as->arch.itsb);
     133        assert(as->arch.dtsb);
    134134       
    135135        uintptr_t tsb = (uintptr_t) as->arch.itsb;
     
    202202        uintptr_t base = ALIGN_DOWN(config.base, 1 << KERNEL_PAGE_WIDTH);
    203203       
    204         ASSERT(as->arch.itsb);
    205         ASSERT(as->arch.dtsb);
     204        assert(as->arch.itsb);
     205        assert(as->arch.dtsb);
    206206       
    207207        uintptr_t tsb = (uintptr_t) as->arch.itsb;
Note: See TracChangeset for help on using the changeset viewer.