1 /* SPDX-License-Identifier: MIT */ 2 /* Copyright © 2025 Intel Corporation */ 3 4 #ifndef __INTEL_PARENT_H__ 5 #define __INTEL_PARENT_H__ 6 7 #include <linux/types.h> 8 9 struct intel_display; 10 11 bool intel_parent_irq_enabled(struct intel_display *display); 12 void intel_parent_irq_synchronize(struct intel_display *display); 13 14 #endif /* __INTEL_PARENT_H__ */ 15