u-boot-brain/cpu/ixp/npe/include/IxOsalOsAssert.h
Wolfgang Denk ba94a1bba3 * Update Intel IXP4xx support
- Add IXP4xx NPE ethernet MAC support
- Add support for Intel IXDPG425 board
- Add support for Prodrive PDNB3 board
- Add IRQ support
Patch by Stefan Roese, 23 May 2006

[This patch does not include cpu/ixp/npe/IxNpeMicrocode.c which still
 sufferes from licensing issues. Blame Intel.]
2006-05-30 15:56:48 +02:00

11 lines
378 B
C

#ifndef IxOsalOsAssert_H
#define IxOsalOsAssert_H
#define IX_OSAL_OS_ASSERT(c) if(!(c)) \
{ \
ixOsalLog (IX_OSAL_LOG_LVL_ERROR, IX_OSAL_LOG_DEV_STDOUT, "Assertion failure \n", 0, 0, 0, 0, 0, 0);\
while(1); \
}
#endif // IxOsalOsAssert_H