1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright (c) 2022-2025 Qualcomm Innovation Center, Inc. All rights reserved. 4 */ 5 6 #ifndef __IRIS_COMMON_H__ 7 #define __IRIS_COMMON_H__ 8 9 struct iris_inst; 10 struct iris_buffer; 11 12 int iris_process_streamon_input(struct iris_inst *inst); 13 int iris_process_streamon_output(struct iris_inst *inst); 14 int iris_session_streamoff(struct iris_inst *inst, u32 plane); 15 16 #endif 17