18 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef _I915_GPU_ERROR_H_7#define _I915_GPU_ERROR_H_8 9struct drm_i915_error_state_buf;10 11__printf(2, 3)12static inline void13i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)14{15}16 17#endif18