/linux-6.3-rc2/drivers/gpu/drm/i915/gt/uc/ |
A D | intel_guc_print.h | 12 #define guc_printk(_guc, _level, _fmt, ...) \ argument 15 #define guc_err(_guc, _fmt, ...) \ argument 16 guc_printk((_guc), err, _fmt, ##__VA_ARGS__) 18 #define guc_warn(_guc, _fmt, ...) \ argument 19 guc_printk((_guc), warn, _fmt, ##__VA_ARGS__) 21 #define guc_notice(_guc, _fmt, ...) \ argument 24 #define guc_info(_guc, _fmt, ...) \ argument 27 #define guc_dbg(_guc, _fmt, ...) \ argument 28 guc_printk((_guc), dbg, _fmt, ##__VA_ARGS__) 33 #define guc_probe_error(_guc, _fmt, ...) \ argument [all …]
|
A D | intel_guc_ct.c | 21 #define CT_ERROR(_ct, _fmt, ...) \ argument 22 guc_err(ct_to_guc(_ct), "CT: " _fmt, ##__VA_ARGS__) 24 #define CT_DEBUG(_ct, _fmt, ...) \ argument 25 guc_dbg(ct_to_guc(_ct), "CT: " _fmt, ##__VA_ARGS__) 29 #define CT_PROBE_ERROR(_ct, _fmt, ...) \ argument 30 guc_probe_error(ct_to_guc(ct), "CT: " _fmt, ##__VA_ARGS__)
|
/linux-6.3-rc2/drivers/gpu/drm/i915/gt/ |
A D | intel_gt_print.h | 13 #define gt_err(_gt, _fmt, ...) \ argument 16 #define gt_warn(_gt, _fmt, ...) \ argument 19 #define gt_notice(_gt, _fmt, ...) \ argument 22 #define gt_info(_gt, _fmt, ...) \ argument 25 #define gt_dbg(_gt, _fmt, ...) \ argument 28 #define gt_err_ratelimited(_gt, _fmt, ...) \ argument 31 #define gt_probe_error(_gt, _fmt, ...) \ argument 34 gt_dbg(_gt, _fmt, ##__VA_ARGS__); \ 36 gt_err(_gt, _fmt, ##__VA_ARGS__); \ 39 #define gt_WARN(_gt, _condition, _fmt, ...) \ argument [all …]
|
/linux-6.3-rc2/drivers/media/platform/sunxi/sun4i-csi/ |
A D | sun4i_v4l2.c | 94 const struct sun4i_csi_format *_fmt; in _sun4i_csi_try_fmt() local 99 if (!_fmt) in _sun4i_csi_try_fmt() 100 _fmt = &sun4i_csi_formats[0]; in _sun4i_csi_try_fmt() 109 pix->num_planes = _fmt->num_planes; in _sun4i_csi_try_fmt() 110 pix->pixelformat = _fmt->fourcc; in _sun4i_csi_try_fmt() 113 width = ALIGN(pix->width, _fmt->hsub); in _sun4i_csi_try_fmt() 114 height = ALIGN(pix->height, _fmt->vsub); in _sun4i_csi_try_fmt() 120 for (i = 0; i < _fmt->num_planes; i++) { in _sun4i_csi_try_fmt() 121 unsigned int hsub = i > 0 ? _fmt->hsub : 1; in _sun4i_csi_try_fmt() 122 unsigned int vsub = i > 0 ? _fmt->vsub : 1; in _sun4i_csi_try_fmt() [all …]
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath5k/ |
A D | debug.h | 116 #define ATH5K_DBG(_sc, _m, _fmt, ...) do { \ argument 118 ATH5K_PRINTK(_sc, KERN_DEBUG, "(%s:%d): " _fmt, \ 122 #define ATH5K_DBG_UNLIMIT(_sc, _m, _fmt, ...) do { \ argument 124 ATH5K_PRINTK(_sc, KERN_DEBUG, "(%s:%d): " _fmt, \
|
A D | ath5k.h | 87 #define ATH5K_PRINTK(_sc, _level, _fmt, ...) \ argument 88 _ath5k_printk(_sc, _level, _fmt, ##__VA_ARGS__) 90 #define ATH5K_PRINTK_LIMIT(_sc, _level, _fmt, ...) \ argument 93 ATH5K_PRINTK(_sc, _level, _fmt, ##__VA_ARGS__); \ 96 #define ATH5K_INFO(_sc, _fmt, ...) \ argument 97 ATH5K_PRINTK(_sc, KERN_INFO, _fmt, ##__VA_ARGS__) 99 #define ATH5K_WARN(_sc, _fmt, ...) \ argument 100 ATH5K_PRINTK_LIMIT(_sc, KERN_WARNING, _fmt, ##__VA_ARGS__) 102 #define ATH5K_ERR(_sc, _fmt, ...) \ argument 103 ATH5K_PRINTK_LIMIT(_sc, KERN_ERR, _fmt, ##__VA_ARGS__)
|
/linux-6.3-rc2/drivers/scsi/csiostor/ |
A D | csio_lnode.h | 216 #define csio_ln_dbg(_ln, _fmt, ...) \ argument 217 csio_dbg(_ln->hwp, "%x:%x "_fmt, CSIO_DEVID_HI(_ln), \ 220 #define csio_ln_err(_ln, _fmt, ...) \ argument 221 csio_err(_ln->hwp, "%x:%x "_fmt, CSIO_DEVID_HI(_ln), \ 224 #define csio_ln_warn(_ln, _fmt, ...) \ argument 225 csio_warn(_ln->hwp, "%x:%x "_fmt, CSIO_DEVID_HI(_ln), \
|
/linux-6.3-rc2/sound/usb/ |
A D | format.c | 33 u64 format, void *_fmt) in parse_audio_format_i_type() argument 41 struct uac_format_type_i_discrete_descriptor *fmt = _fmt; in parse_audio_format_i_type() 51 struct uac_format_type_i_ext_descriptor *fmt = _fmt; in parse_audio_format_i_type() 65 struct uac3_as_header_descriptor *as = _fmt; in parse_audio_format_i_type() 624 void *_fmt) in parse_audio_format_i() argument 634 struct uac_format_type_i_continuous_descriptor *fmt = _fmt; in parse_audio_format_i() 665 fp->formats = parse_audio_format_i_type(chip, fp, format, _fmt); in parse_audio_format_i() 678 struct uac_format_type_i_continuous_descriptor *fmt = _fmt; in parse_audio_format_i() 707 u64 format, void *_fmt) in parse_audio_format_ii() argument 733 struct uac_format_type_ii_discrete_descriptor *fmt = _fmt; in parse_audio_format_ii() [all …]
|
/linux-6.3-rc2/include/linux/ |
A D | printk.h | 377 #define __printk_index_emit(_fmt, _level, _subsys_fmt_prefix) \ argument 379 if (__builtin_constant_p(_fmt) && __builtin_constant_p(_level)) { \ 388 .fmt = __builtin_constant_p(_fmt) ? (_fmt) : NULL, \ 424 #define printk_index_wrap(_p_func, _fmt, ...) \ argument 426 __printk_index_emit(_fmt, NULL, NULL); \ 427 _p_func(_fmt, ##__VA_ARGS__); \
|
/linux-6.3-rc2/arch/s390/include/asm/ |
A D | debug.h | 247 #define debug_sprintf_event(_id, _level, _fmt, ...) \ argument 257 _fmt, ## __VA_ARGS__); \ 377 #define debug_sprintf_exception(_id, _level, _fmt, ...) \ argument 387 _fmt, ## __VA_ARGS__);\
|
/linux-6.3-rc2/drivers/block/drbd/ |
A D | drbd_polymorph_printk.h | 58 printk(level __drbd_printk_ ## struct_name ## _fmt(fmt), \ 80 __dynamic_pr_debug(&descriptor, __drbd_printk_ ## struct_name ## _fmt(fmt), \
|
/linux-6.3-rc2/tools/lib/perf/tests/ |
A D | test-evsel.c | 300 #define FMT(_fmt) PERF_FORMAT_ ## _fmt in test_stat_read_format() argument
|
/linux-6.3-rc2/sound/soc/codecs/ |
A D | ak4613.c | 276 #define AUDIO_IFACE(_dif, _width, _fmt) \ argument 280 .fmt = SND_SOC_DAIFMT_##_fmt,\
|
/linux-6.3-rc2/drivers/gpu/drm/bridge/ |
A D | sil-sii8620.h | 996 #define VAL_TPI_FORMAT(_fmt, _qr) \ argument 997 (VAL_TPI_FORMAT_##_fmt | (VAL_TPI_QUAN_RANGE_##_qr << 2))
|
/linux-6.3-rc2/arch/powerpc/perf/ |
A D | hv-24x7.c | 1094 #define PAGE_0_ATTR(_name, _fmt, _expr) \ argument 1110 ret = sprintf(buf, _fmt, _expr); \
|
/linux-6.3-rc2/tools/perf/ |
A D | builtin-diff.c | 1666 static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp, in hpp__entry_global() argument 1670 container_of(_fmt, struct diff_hpp_fmt, fmt); in hpp__entry_global()
|
/linux-6.3-rc2/drivers/net/ethernet/qlogic/qlcnic/ |
A D | qlcnic.h | 2298 #define QLCDB(adapter, lvl, _fmt, _args...) do { \ argument 2300 printk(KERN_INFO "%s: %s: " _fmt, \
|
/linux-6.3-rc2/drivers/net/wireless/intel/iwlwifi/mvm/ |
A D | mac80211.c | 798 #define CHECK_BA_TRIGGER(_mvm, _trig, _tid_bm, _tid, _fmt...) \ argument 802 iwl_fw_dbg_collect_trig(&(_mvm)->fwrt, _trig, _fmt); \ 5308 #define CHECK_MLME_TRIGGER(_cnt, _fmt...) \ in iwl_mvm_event_mlme_callback() argument 5312 iwl_fw_dbg_collect_trig(&(mvm)->fwrt, trig, _fmt); \ in iwl_mvm_event_mlme_callback()
|
/linux-6.3-rc2/lib/ |
A D | bch.c | 97 #define dbg(_fmt, args...) do {} while (0) argument
|
/linux-6.3-rc2/drivers/usb/gadget/function/ |
A D | f_uac1.c | 1463 result = sprintf(page, type##_fmt, opts->name); \
|
A D | f_uac2.c | 1889 result = sprintf(page, type##_fmt, opts->name); \
|
/linux-6.3-rc2/drivers/scsi/qla2xxx/ |
A D | qla_def.h | 5496 #define DBG_FCPORT_PRFMT(_fp, _fmt, _args...) \ argument 5497 "%s: %8phC: " _fmt " (state=%d disc_state=%d scan_state=%d loopid=0x%x deleted=%d flags=0x%x)\n", \
|