Changeset 95c675b in mainline for kernel/genarch/include/genarch/drivers/omap/irc.h
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- 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. - File:
-
- 1 edited
-
kernel/genarch/include/genarch/drivers/omap/irc.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/genarch/drivers/omap/irc.h
rdbf32b1 r95c675b 39 39 #define KERN_OMAP_IRQC_H_ 40 40 41 #include <assert.h> 41 42 #include <typedefs.h> 42 43 … … 230 231 static inline void omap_irc_enable(omap_irc_regs_t *regs, unsigned inum) 231 232 { 232 ASSERT(inum < OMAP_IRC_IRQ_COUNT);233 assert(inum < OMAP_IRC_IRQ_COUNT); 233 234 const unsigned set = inum / 32; 234 235 const unsigned pos = inum % 32; … … 243 244 static inline void omap_irc_disable(omap_irc_regs_t *regs, unsigned inum) 244 245 { 245 ASSERT(inum < OMAP_IRC_IRQ_COUNT);246 assert(inum < OMAP_IRC_IRQ_COUNT); 246 247 const unsigned set = inum / 32; 247 248 const unsigned pos = inum % 32;
Note:
See TracChangeset
for help on using the changeset viewer.
