at for-next 20 lines 629 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2024 Intel Corporation 4 */ 5 6#ifndef __INTEL_ENCODER_H__ 7#define __INTEL_ENCODER_H__ 8 9struct intel_display; 10struct intel_encoder; 11 12void intel_encoder_link_check_init(struct intel_encoder *encoder, 13 void (*callback)(struct intel_encoder *encoder)); 14void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int delay_ms); 15void intel_encoder_link_check_flush_work(struct intel_encoder *encoder); 16 17void intel_encoder_suspend_all(struct intel_display *display); 18void intel_encoder_shutdown_all(struct intel_display *display); 19 20#endif /* __INTEL_ENCODER_H__ */