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/genarch/include/genarch/drivers/omap/irc.h

    rdbf32b1 r95c675b  
    3939#define KERN_OMAP_IRQC_H_
    4040
     41#include <assert.h>
    4142#include <typedefs.h>
    4243
     
    230231static inline void omap_irc_enable(omap_irc_regs_t *regs, unsigned inum)
    231232{
    232         ASSERT(inum < OMAP_IRC_IRQ_COUNT);
     233        assert(inum < OMAP_IRC_IRQ_COUNT);
    233234        const unsigned set = inum / 32;
    234235        const unsigned pos = inum % 32;
     
    243244static inline void omap_irc_disable(omap_irc_regs_t *regs, unsigned inum)
    244245{
    245         ASSERT(inum < OMAP_IRC_IRQ_COUNT);
     246        assert(inum < OMAP_IRC_IRQ_COUNT);
    246247        const unsigned set = inum / 32;
    247248        const unsigned pos = inum % 32;
Note: See TracChangeset for help on using the changeset viewer.