Home
last modified time | relevance | path

Searched refs:_cond (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc_print.h39 #define guc_WARN(_guc, _cond, _fmt, ...) \ argument
40 gt_WARN(guc_to_gt(_guc), _cond, "GUC: " _fmt, ##__VA_ARGS__)
42 #define guc_WARN_ONCE(_guc, _cond, _fmt, ...) \ argument
43 gt_WARN_ONCE(guc_to_gt(_guc), _cond, "GUC: " _fmt, ##__VA_ARGS__)
45 #define guc_WARN_ON(_guc, _cond) \ argument
46 gt_WARN(guc_to_gt(_guc), _cond, "%s(%s)", "guc_WARN_ON", __stringify(_cond))
48 #define guc_WARN_ON_ONCE(_guc, _cond) \ argument
49 gt_WARN_ONCE(guc_to_gt(_guc), _cond, "%s(%s)", "guc_WARN_ON_ONCE", __stringify(_cond))
/linux/include/linux/
H A Dclosure.h435 #define __closure_wait_event(waitlist, _cond) \ argument
443 if (_cond) \
451 #define closure_wait_event(waitlist, _cond) \ argument
453 if (!(_cond)) \
454 __closure_wait_event(waitlist, _cond); \
457 #define __closure_wait_event_timeout(waitlist, _cond, _until) \ argument
466 if (_cond) { \
484 #define closure_wait_event_timeout(waitlist, _cond, _timeout) \ argument
487 (_cond) \
489 : __closure_wait_event_timeout(waitlist, _cond, _until);\
/linux/drivers/gpu/drm/nouveau/include/nvif/
H A Dprintf.h22 int _cond = (c); \
23 if (_cond) { \
24 NVIF_ERROR(_object, f" (ret:%d)", ##a, _cond); \
/linux/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dfalcon.h90 ({ bool _cond = (c); _cond ? FLCN_ERR(f, fmt, ##a) : FLCN_DBG(f, fmt, ##a); _cond; })
/linux/drivers/gpu/drm/xe/
H A Dxe_guc_db_mgr.c46 #define dbm_assert(_dbm, _cond) xe_gt_assert(dbm_to_gt(_dbm), _cond) argument
/linux/drivers/net/wireless/realtek/rtw89/
H A Dfw.c819 #define __CFG_FW_FEAT(_chip, _cond, _maj, _min, _sub, _idx, _feat) \ argument
824 .cond = __fw_feat_cond_ ## _cond, \
827 #define __S_DIS_FW_FEAT(_chip, _cond, _maj, _min, _sub, _idx, _feat) \ argument
832 .cond = __fw_feat_cond_ ## _cond, \
837 #define __G_DIS_FW_FEAT(_chip, _cond, _maj, _min, _sub, _idx, _grp) \ argument
842 .cond = __fw_feat_cond_ ## _cond, \
848 #define __DIS_FW_FEAT(_chip, _cond, _maj, _min, _sub, _idx, _feat, _type) \ argument
849 __##_type##_DIS_FW_FEAT(_chip, _cond, _maj, _min, _sub, _idx, _feat)