Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/console.c

    r6afc9d7 r63e27ef  
    3434 */
    3535
     36#include <assert.h>
    3637#include <console/console.h>
    3738#include <console/chardev.h>
     
    189190        void *faddr = (void *) KA2PA(kio);
    190191       
    191         ASSERT((uintptr_t) faddr % FRAME_SIZE == 0);
     192        assert((uintptr_t) faddr % FRAME_SIZE == 0);
    192193       
    193194        kio_parea.pbase = (uintptr_t) faddr;
Note: See TracChangeset for help on using the changeset viewer.