Searched refs:__fmt (Results 1 - 12 of 12) sorted by relevance

/linux-master/drivers/scsi/csiostor/
H A Dcsio_hw.h611 #define csio_info(__hw, __fmt, ...) \
612 dev_info(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__)
614 #define csio_fatal(__hw, __fmt, ...) \
615 dev_crit(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__)
617 #define csio_err(__hw, __fmt, ...) \
618 dev_err(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__)
620 #define csio_warn(__hw, __fmt, ...) \
621 dev_warn(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__)
624 #define csio_dbg(__hw, __fmt, ...) \
625 csio_info((__hw), __fmt, ##__VA_ARGS_
[all...]
/linux-master/include/linux/
H A Ddebugfs.h48 #define DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \
51 __simple_attr_check_format(__fmt, 0ull); \
52 return simple_attr_open(inode, file, __get, __set, __fmt); \
63 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \
64 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false)
66 #define DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \
67 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
H A Dfs.h3493 #define DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \
3496 __simple_attr_check_format(__fmt, 0ull); \
3497 return simple_attr_open(inode, file, __get, __set, __fmt); \
3508 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \
3509 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false)
3511 #define DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \
3512 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
/linux-master/drivers/media/pci/ivtv/
H A Divtv-alsa-main.c22 #define IVTV_DEBUG_ALSA_INFO(__fmt, __arg...) \
25 printk(KERN_INFO pr_fmt("%s: alsa:" __fmt), \
/linux-master/drivers/media/i2c/
H A Dmt9v111.c896 struct v4l2_mbus_framefmt *__fmt; local
939 __fmt = __mt9v111_get_pad_format(mt9v111, sd_state, format->pad,
943 if (__fmt->code == new_fmt.code &&
944 __fmt->width == new_fmt.width &&
945 __fmt->height == new_fmt.height)
949 __fmt->code = new_fmt.code;
950 __fmt->width = new_fmt.width;
951 __fmt->height = new_fmt.height;
957 __func__, __fmt->code, __fmt
[all...]
/linux-master/drivers/gpu/drm/display/
H A Ddrm_dp_tunnel.c59 #define __tun_prn(__tunnel, __level, __type, __fmt, ...) \
61 "[DPTUN %s][%s] " __fmt, \
66 #define tun_dbg(__tunnel, __fmt, ...) \
67 __tun_prn(__tunnel, dbg, _kms, __fmt, ## __VA_ARGS__)
69 #define tun_dbg_stat(__tunnel, __err, __fmt, ...) do { \
71 __tun_prn(__tunnel, dbg, _kms, __fmt " (Failed, err: %pe)\n", \
74 __tun_prn(__tunnel, dbg, _kms, __fmt " (Ok)\n", \
78 #define tun_dbg_atomic(__tunnel, __fmt, ...) \
79 __tun_prn(__tunnel, dbg, _atomic, __fmt, ## __VA_ARGS__)
81 #define tun_grp_dbg(__group, __fmt,
[all...]
/linux-master/security/apparmor/include/
H A Dlib.h32 #define dbg_printk(__fmt, __args...) pr_debug(__fmt, ##__args)
/linux-master/drivers/media/platform/samsung/exynos4-is/
H A Dfimc-isp-video.c386 const struct fimc_fmt *__fmt; local
388 __fmt = fimc_isp_find_format(&pixm->pixelformat, NULL, 2);
391 *fmt = __fmt;
395 pixm->num_planes = __fmt->memplanes;
396 pixm->pixelformat = __fmt->fourcc;
/linux-master/include/media/
H A Dv4l2-common.h48 #define dev_dbg_lvl(__dev, __level, __debug, __fmt, __arg...) \
51 dev_printk(KERN_DEBUG, __dev, __fmt, ##__arg); \
/linux-master/tools/testing/selftests/tpm2/
H A Dtpm2.py296 def __fmt(self): member in class:Public
311 return struct.pack(self.__fmt(),
322 return struct.calcsize(self.__fmt())
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Dfile.c141 #define DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \
144 __simple_attr_check_format(__fmt, 0ull); \
145 return spufs_attr_open(inode, file, __get, __set, __fmt); \
1218 #define DEFINE_SPUFS_ATTRIBUTE(__name, __get, __set, __fmt, __acquire) \
1241 DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__name, __##__get, __set, __fmt);
/linux-master/drivers/scsi/bfa/
H A Dbfa_fcs_lport.c5519 #define __fc_pid_match(__c0, __c1, __fmt) \
5520 (((__fmt) == FC_RSCN_FORMAT_FABRIC) || \
5521 (((__fmt) == FC_RSCN_FORMAT_DOMAIN) && \
5523 (((__fmt) == FC_RSCN_FORMAT_AREA) && \

Completed in 239 milliseconds