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 10 struct intel_framebuffer *intel_bo_alloc_framebuffer(void); 11 int intel_bo_panic_setup(struct drm_scanout_buffer *sb); 12 void intel_bo_panic_finish(struct intel_framebuffer *fb); 13 14 #endif /* __INTEL_PANIC_H__ */ 15