Ignore:
Timestamp:
2017-06-19T21:47:42Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deacc58d
Parents:
7354b5e
Message:

ASSERT → assert

File:
1 edited

Legend:

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

    r7354b5e r63e27ef  
    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>
     
    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.