mirror of
https://github.com/torvalds/linux.git
synced 2025-11-03 18:20:25 +02:00
Reduce the struct intel_framebuffer usage within the panic implementation. Cc: Jocelyn Falempe <jfalempe@redhat.com> Cc: Maarten Lankhorst <dev@lankhorst.se> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com> Link: https://lore.kernel.org/r/2a016167b1f6f0b432aed0a630f9dbcd07fadb7b.1756835342.git.jani.nikula@intel.com
14 lines
389 B
C
14 lines
389 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2025 Intel Corporation */
|
|
|
|
#ifndef __INTEL_PANIC_H__
|
|
#define __INTEL_PANIC_H__
|
|
|
|
struct drm_scanout_buffer;
|
|
struct intel_panic;
|
|
|
|
struct intel_panic *intel_panic_alloc(void);
|
|
int intel_panic_setup(struct intel_panic *panic, struct drm_scanout_buffer *sb);
|
|
void intel_panic_finish(struct intel_panic *panic);
|
|
|
|
#endif /* __INTEL_PANIC_H__ */
|