Ignore:
Timestamp:
2017-06-19T21:47:42Z (7 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/genarch/src/drivers/am335x/timer.c

    r7354b5e r63e27ef  
    3434 */
    3535
     36#include <assert.h>
    3637#include <genarch/drivers/am335x/timer.h>
    3738#include <mm/km.h>
     
    9091        size_t size;
    9192
    92         ASSERT(id < TIMERS_MAX);
    93         ASSERT(timer != NULL);
     93        assert(id < TIMERS_MAX);
     94        assert(timer != NULL);
    9495
    9596        if (id == DMTIMER1_1MS)
     
    100101
    101102        timer->regs = (void *) km_map(base_addr, size, PAGE_NOT_CACHEABLE);
    102         ASSERT(timer->regs != NULL);
     103        assert(timer->regs != NULL);
    103104
    104105        timer->id = id;
Note: See TracChangeset for help on using the changeset viewer.