1 /* SPDX-License-Identifier: MIT */ 2 /* Copyright © 2025 Intel Corporation */ 3 4 #ifndef __INTEL_PANIC_H__ 5 #define __INTEL_PANIC_H__ 6 7 struct drm_scanout_buffer; 8 struct intel_framebuffer; 9 struct intel_panic; 10 11 struct intel_panic *intel_panic_alloc(void); 12 int intel_panic_setup(struct drm_scanout_buffer *sb); 13 void intel_panic_finish(struct intel_framebuffer *fb); 14 15 #endif /* __INTEL_PANIC_H__ */ 16