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/include/genarch/drivers/bcm2835/timer.h

    r7354b5e r63e27ef  
    3636#ifndef KERN_BCM2835_TIMER_H_
    3737
     38#include <assert.h>
    3839#include <typedefs.h>
    3940#include <mm/km.h>
     
    6667static inline void bcm2835_timer_start(bcm2835_timer_t* timer)
    6768{
    68         ASSERT(timer);
     69        assert(timer);
    6970        /* Clear pending interrupt on channel 1 */
    7071        timer->cs |= BCM2835_TIMER_CS_M1;
     
    7576static inline void bcm2835_timer_irq_ack(bcm2835_timer_t* timer)
    7677{
    77         ASSERT(timer);
     78        assert(timer);
    7879        /* Clear pending interrupt on channel 1 */
    7980        timer->cs |= BCM2835_TIMER_CS_M1;
Note: See TracChangeset for help on using the changeset viewer.