Searched refs:__BUG_WARN_MSG (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/external/xserver/include/ |
| H A D | misc.h | 418 #define __BUG_WARN_MSG(cond, with_msg, ...) \ macro 428 __BUG_WARN_MSG(cond, 1, __VA_ARGS__) 430 #define BUG_WARN(cond) __BUG_WARN_MSG(cond, 0, NULL) 433 do { if (cond) { __BUG_WARN_MSG(cond, 0, NULL); return; } } while(0) 436 do { if (cond) { __BUG_WARN_MSG(cond, 1, __VA_ARGS__); return; } } while(0) 439 do { if (cond) { __BUG_WARN_MSG(cond, 0, NULL); return (val); } } while(0) 442 do { if (cond) { __BUG_WARN_MSG(cond, 1, __VA_ARGS__); return (val); } } while(0)
|
| /OK3568_Linux_fs/external/xserver/ |
| H A D | ChangeLog | 81728 __BUG_WARN_MSG is a simple helper to enable call with and without varargs. I
|