Lines Matching refs:drm_printer

76 struct drm_printer {  struct
78 void (*printfn)(struct drm_printer *p, struct va_format *vaf); argument
79 void (*puts)(struct drm_printer *p, const char *str); argument
84 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf); argument
85 void __drm_puts_coredump(struct drm_printer *p, const char *str);
86 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf);
87 void __drm_puts_seq_file(struct drm_printer *p, const char *str);
88 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf);
89 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf);
90 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf);
93 void drm_printf(struct drm_printer *p, const char *f, ...);
94 void drm_puts(struct drm_printer *p, const char *str);
95 void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset);
96 void drm_print_bits(struct drm_printer *p, unsigned long value,
107 drm_vprintf(struct drm_printer *p, const char *fmt, va_list *va) in drm_vprintf()
173 static inline struct drm_printer
176 struct drm_printer p = { in drm_coredump_printer()
195 static inline struct drm_printer drm_seq_file_printer(struct seq_file *f) in drm_seq_file_printer()
197 struct drm_printer p = { in drm_seq_file_printer()
212 static inline struct drm_printer drm_info_printer(struct device *dev) in drm_info_printer()
214 struct drm_printer p = { in drm_info_printer()
228 static inline struct drm_printer drm_debug_printer(const char *prefix) in drm_debug_printer()
230 struct drm_printer p = { in drm_debug_printer()
244 static inline struct drm_printer drm_err_printer(const char *prefix) in drm_err_printer()
246 struct drm_printer p = { in drm_err_printer()