Lines Matching refs:drm_printer

75 struct drm_printer {  struct
77 void (*printfn)(struct drm_printer *p, struct va_format *vaf); argument
78 void (*puts)(struct drm_printer *p, const char *str); argument
83 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf); argument
84 void __drm_puts_coredump(struct drm_printer *p, const char *str);
85 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf);
86 void __drm_puts_seq_file(struct drm_printer *p, const char *str);
87 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf);
88 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf);
89 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf);
92 void drm_printf(struct drm_printer *p, const char *f, ...);
93 void drm_puts(struct drm_printer *p, const char *str);
94 void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset);
95 void drm_print_bits(struct drm_printer *p, unsigned long value,
106 drm_vprintf(struct drm_printer *p, const char *fmt, va_list *va) in drm_vprintf()
172 static inline struct drm_printer
175 struct drm_printer p = { in drm_coredump_printer()
194 static inline struct drm_printer drm_seq_file_printer(struct seq_file *f) in drm_seq_file_printer()
196 struct drm_printer p = { in drm_seq_file_printer()
211 static inline struct drm_printer drm_info_printer(struct device *dev) in drm_info_printer()
213 struct drm_printer p = { in drm_info_printer()
227 static inline struct drm_printer drm_debug_printer(const char *prefix) in drm_debug_printer()
229 struct drm_printer p = { in drm_debug_printer()
243 static inline struct drm_printer drm_err_printer(const char *prefix) in drm_err_printer()
245 struct drm_printer p = { in drm_err_printer()