Home
last modified time | relevance | path

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

/dragonfly/sys/dev/drm/
H A Ddrm_print.c30 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_seq_file() argument
32 seq_printf(p->arg, "%pV", vaf); in __drm_printfn_seq_file()
36 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_info() argument
38 dev_info(p->arg, "[" DRM_NAME "] %pV", vaf); in __drm_printfn_info()
42 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_debug() argument
44 pr_debug("%s %pV", p->prefix, vaf); in __drm_printfn_debug()
55 struct va_format vaf; in drm_printf() local
59 vaf.fmt = f; in drm_printf()
60 vaf.va = &args; in drm_printf()
61 p->printfn(p, &vaf); in drm_printf()
H A Ddrm_drv.c127 struct va_format vaf; in drm_dev_printk() local
134 vaf.fmt = format; in drm_dev_printk()
135 vaf.va = &args; in drm_dev_printk()
140 &vaf); in drm_dev_printk()
147 kprintf(vaf.fmt, vaf.va); in drm_dev_printk()
151 kprintf(vaf.fmt, vaf.va); in drm_dev_printk()
162 struct va_format vaf; in drm_printk() local
169 vaf.fmt = format; in drm_printk()
170 vaf.va = &args; in drm_printk()
175 strcmp(level, KERN_ERR) == 0 ? " *ERROR*" : "", &vaf); in drm_printk()
[all …]
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_print.h71 void (*printfn)(struct drm_printer *p, struct va_format *vaf);
76 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf);
77 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf);
78 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf);
/dragonfly/sys/dev/drm/i915/
H A Dintel_dpio_phy.c491 struct va_format vaf; in __phy_reg_verify_state() local
500 vaf.fmt = reg_fmt; in __phy_reg_verify_state()
501 vaf.va = &args; in __phy_reg_verify_state()
505 phy, &vaf, reg.reg, val, (val & ~mask) | expected, in __phy_reg_verify_state()
H A Di915_drv.c89 struct va_format vaf; in __i915_printk() local
97 vaf.fmt = fmt; in __i915_printk()
98 vaf.va = &args; in __i915_printk()
101 __builtin_return_address(0), &vaf); in __i915_printk()
H A Dintel_display.c11070 struct va_format vaf; in pipe_config_err() local
11082 vaf.fmt = format; in pipe_config_err()
11083 vaf.va = &args; in pipe_config_err()
11085 drm_printk(level, category, "mismatch in %s %pV", name, &vaf); in pipe_config_err()