1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved. 4 */ 5 6 #ifndef __IRIS_VIDC_H__ 7 #define __IRIS_VIDC_H__ 8 9 struct iris_core; 10 11 void iris_init_ops(struct iris_core *core); 12 int iris_open(struct file *filp); 13 int iris_close(struct file *filp); 14 15 #endif 16